mirror of
https://github.com/truenas/scale-build.git
synced 2026-02-15 07:29:12 +00:00
13 lines
252 B
Bash
Executable File
13 lines
252 B
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
branch="master"
|
|
cd /mnt/evo/build
|
|
|
|
for i in "truenas" "truenas_files" "middlewared"; do
|
|
echo "\nupdating $i"
|
|
git -C sources/"$i" fetch origin
|
|
git -C sources/"$i" checkout "$branch"
|
|
git -C sources/"$i" reset --hard origin/"$branch"
|
|
done
|