improve log messages in release script

felipesanches-svg
don bright 2012-08-05 03:22:28 +02:00
parent 00c19d2a36
commit 1a7f52b680
1 changed files with 4 additions and 1 deletions

View File

@ -61,7 +61,7 @@ if test -z "$VERSION"; then
fi fi
echo "Checking pre-requisitie..." echo "Checking pre-requisites..."
case $OS in case $OS in
LINXWIN) LINXWIN)
@ -75,6 +75,7 @@ case $OS in
echo "makensis not found. please install nsis" echo "makensis not found. please install nsis"
exit 1 exit 1
fi fi
echo NSIS makensis found: $MAKENSIS
;; ;;
esac esac
@ -82,6 +83,8 @@ if [ ! -e $OPENSCADDIR/libraries/MCAD/__init__.py ]; then
echo "Downloading MCAD" echo "Downloading MCAD"
git submodule init git submodule init
git submodule update git submodule update
else
echo "MCAD found:" $OPENSCADDIR/libraries/MCAD
fi fi