jam-cloud/web/jenkins

16 lines
200 B
Plaintext
Raw Normal View History

2012-11-18 07:56:50 +00:00
#!/bin/bash
DEB_SERVER=https://int.jamkazam.com:9010/apt-`uname -p`
2013-01-07 02:31:31 +00:00
2012-11-18 07:56:50 +00:00
echo "starting build..."
./build
if [ "$?" = "0" ]; then
echo "build succeeded"
else
echo "build failed"
exit 1
fi