jam-cloud/web/jenkins

16 lines
192 B
Plaintext
Raw Normal View History

2012-11-18 07:56:50 +00:00
#!/bin/bash
2013-07-20 01:46:19 +00:00
DEB_SERVER=http://localhost: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