mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
Use git pull with rebase in build script
Without rebase, the build script would stop because it couldn't complete a merge. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
c41fd91261
commit
2847fb4af5
1 changed files with 2 additions and 2 deletions
|
@ -110,7 +110,7 @@ if [ ! -d libdivecomputer ] ; then
|
|||
fi
|
||||
fi
|
||||
cd libdivecomputer
|
||||
git pull
|
||||
git pull --rebase
|
||||
if ! git checkout Subsurface-testing ; then
|
||||
echo "can't check out the Subsurface-testing branch of libdivecomputer -- giving up"
|
||||
exit 1
|
||||
|
@ -134,7 +134,7 @@ if [ ! -d marble-source ] ; then
|
|||
fi
|
||||
fi
|
||||
cd marble-source
|
||||
git pull
|
||||
git pull --rebase
|
||||
if ! git checkout Subsurface-testing ; then
|
||||
echo "can't check out the Subsurface-testing branch of marble -- giving up"
|
||||
exit 1
|
||||
|
|
Loading…
Reference in a new issue