build: Make gimp build scripts work on tarballs too
This commit is contained in:
parent
febeb89c55
commit
a9e1f665dd
3 changed files with 3 additions and 3 deletions
|
|
@ -14,7 +14,7 @@ elif [ $(basename "$PWD") = 'flatpak' ]; then
|
|||
cd ../../..
|
||||
fi
|
||||
if [ -z "$GITLAB_CI" ]; then
|
||||
git submodule update --init
|
||||
git submodule update --init || true #true is for this script work on tarballs too
|
||||
fi
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ elif [ $(basename "$PWD") = 'snap' ]; then
|
|||
cd ../../..
|
||||
fi
|
||||
if [ -z "$GITLAB_CI" ]; then
|
||||
git submodule update --init
|
||||
git submodule update --init || true #true is for this script work on tarballs too
|
||||
fi
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ elif [ $(basename "$PWD") = 'macos' ]; then
|
|||
cd ../../..
|
||||
fi
|
||||
if [ -z "$GITLAB_CI" ]; then
|
||||
git submodule update --init
|
||||
git submodule update --init || true #true is for this script work on tarballs too
|
||||
|
||||
NON_RELOCATABLE_OPTION='-Drelocatable-bundle=no'
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue