Lock nscl version on stable releases.
This commit is contained in:
parent
9fc0dd3d42
commit
2b496923da
6
build.sh
6
build.sh
|
@ -64,7 +64,11 @@ if [[ "$1" == "bump" ]]; then
|
||||||
echo "Bumping to $VER"
|
echo "Bumping to $VER"
|
||||||
git add "$MANIFEST_IN"
|
git add "$MANIFEST_IN"
|
||||||
git commit -m "Version bump: $VER."
|
git commit -m "Version bump: $VER."
|
||||||
[[ $VER == *rc* ]] || "$0" tag
|
if ! [[ $VER == *rc* ]]; then
|
||||||
|
# it's a stable release: let's lock nscl and tag
|
||||||
|
git submodule update
|
||||||
|
"$0" tag
|
||||||
|
fi
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
XPI_DIR="$BASE/xpi"
|
XPI_DIR="$BASE/xpi"
|
||||||
|
|
Loading…
Reference in New Issue