1
0
Fork 0

PackAndDeliverBashValmis

This commit is contained in:
MartinezEst 2016-09-19 16:23:20 +03:00
parent 9cd6f6cf82
commit 4f41814558
1 changed files with 7 additions and 7 deletions

View File

@ -1,14 +1,14 @@
#!/bin/bash #!/bin/bash
echo "Test project build" echo "Testi project buildi"
make clean && make make clean && make
if [ $? -ne 0 ] ; then if [ $? -ne 0 ] ; then
echo "Build failed!" echo "Build ei 6nnestunud!"
exit 1 exit 1
else else
echo "Build OK!" echo "Build korras!"
fi fi
@ -26,17 +26,17 @@ else
fi fi
echo "Currently set tags on this project" echo "Hetke tagid selles projektis"
git tag git tag
echo -n "Are the required tags added? (Y/n)" echo -n "Are the required tags added? (Y/n)"
read ANSWER read ANSWER
if [ "$ANSWER" == "n" ]; then if [ "$ANSWER" == "n" ]; then
echo "Please add required tags" echo "Palun lisa vajalikud tagid"
exit 1 exit 1
fi fi
echo "Packaging the project" echo "Pakime projekti"
make clean && make make clean && make
@ -47,5 +47,5 @@ git archive --format=tar.gz -o $TEMP_DIR/$(git describe --abbrev=6 --dirty --alw
mv $TEMP_DIR/* bin/ mv $TEMP_DIR/* bin/
rm -rf $TEMP_DIR rm -rf $TEMP_DIR
echo "Project packaging succeeded" echo "Projekti pakendamine 6nnestus"
exit 0 exit 0