enforce bash usage to avoid problems on Ubuntu with dash

This commit is contained in:
Matthias Mailänder
2014-06-05 12:14:26 +02:00
parent 87ddbddf2f
commit 4b3935b010
2 changed files with 5 additions and 5 deletions

View File

@@ -40,7 +40,7 @@ cd packaging/linux
pushd deb pushd deb
echo "Building Debian package." echo "Building Debian package."
./buildpackage.sh "$TAG" ../$ROOTDIR "$PACKAGEDIR" bash buildpackage.sh "$TAG" ../$ROOTDIR "$PACKAGEDIR"
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "Debian package build failed." echo "Debian package build failed."
fi fi
@@ -48,7 +48,7 @@ popd
pushd pkgbuild pushd pkgbuild
echo "Building Arch-Linux package." echo "Building Arch-Linux package."
sh buildpackage.sh "$TAG" ../$ROOTDIR "$PACKAGEDIR" bash buildpackage.sh "$TAG" ../$ROOTDIR "$PACKAGEDIR"
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "Arch-Linux package build failed." echo "Arch-Linux package build failed."
fi fi
@@ -56,7 +56,7 @@ popd
pushd rpm pushd rpm
echo "Building RPM package." echo "Building RPM package."
sh buildpackage.sh "$TAG" ../$ROOTDIR ~/rpmbuild "$PACKAGEDIR" bash buildpackage.sh "$TAG" ../$ROOTDIR ~/rpmbuild "$PACKAGEDIR"
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "RPM package build failed." echo "RPM package build failed."
fi fi

View File

@@ -89,7 +89,7 @@ popd
pushd osx pushd osx
echo "Zipping OS X package" echo "Zipping OS X package"
sh buildpackage.sh "$TAG" "$BUILTDIR" "${SRCDIR}/thirdparty/osx" "$OUTPUTDIR" bash buildpackage.sh "$TAG" "$BUILTDIR" "${SRCDIR}/thirdparty/osx" "$OUTPUTDIR"
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "OS X package build failed." echo "OS X package build failed."
fi fi
@@ -97,7 +97,7 @@ popd
pushd linux pushd linux
echo "Building Linux packages" echo "Building Linux packages"
sh buildpackage.sh "$TAG" "$BUILTDIR" "${SRCDIR}/thirdparty/linux" "$OUTPUTDIR" bash buildpackage.sh "$TAG" "$BUILTDIR" "${SRCDIR}/thirdparty/linux" "$OUTPUTDIR"
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "Linux package build failed." echo "Linux package build failed."
fi fi