diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-01-09 08:08:59 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-01-09 20:53:26 -0800 |
commit | 7923507e76e8d64c6c457664ec59f10c884a9fb0 (patch) | |
tree | f9fbb4b484eb97905fb1a68131118ce1b626f3ce /scripts | |
parent | 123f3ef7ec8f977c9949c3ac24008163c722e208 (diff) | |
download | subsurface-7923507e76e8d64c6c457664ec59f10c884a9fb0.tar.gz |
build system: try harder to checkout the right version
And actually fail a build if that doesn't work.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/get-dep-lib.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/get-dep-lib.sh b/scripts/get-dep-lib.sh index 15796ae80..ccda4bcb7 100755 --- a/scripts/get-dep-lib.sh +++ b/scripts/get-dep-lib.sh @@ -46,9 +46,9 @@ git_checkout_library() { if [ ! "$current_sha" = "$target_sha" ] ; then git fetch origin - if ! git checkout "$version" ; then + if ! git checkout -f "$version" ; then echo "Can't find the right tag in $name - giving up" - return 1 + exit 1 fi fi popd |