jam-cloud/admin/jenkins

16 lines
192 B
Plaintext
Raw Permalink Normal View History

#!/bin/bash
2013-07-20 01:45:39 +00:00
DEB_SERVER=http://localhost:9010/apt-`uname -p`
echo "starting build..."
./build
if [ "$?" = "0" ]; then
echo "build succeeded"
else
echo "build failed"
exit 1
fi