Build script: Fixed check for build.conf

This commit is contained in:
Sebastian Kaspari 2010-11-03 16:34:17 +01:00
parent b2e37a8644
commit ebea92ccf8
1 changed files with 2 additions and 1 deletions

View File

@ -4,9 +4,10 @@
# - Modify build.conf as needed
# - Usage: ./build_release.sh <version>
if [ ! -f build.conf ]
if [ ! -f build.conf ]; then
echo "Config file missing: build.conf"
echo "Modify the build.conf.sample file and save it as build.conf"
exit 1
fi
. build.conf