Codebase list conky-manager / 1ac4427f-253c-4dc4-a585-2a1dc2eb917e/main push.sh
1ac4427f-253c-4dc4-a585-2a1dc2eb917e/main

Tree @1ac4427f-253c-4dc4-a585-2a1dc2eb917e/main (Download .tar.gz)

push.sh @1ac4427f-253c-4dc4-a585-2a1dc2eb917e/mainraw · history · blame

#!/bin/bash

backup=`pwd`
DIR="$( cd "$( dirname "$0" )" && pwd )"
cd "$DIR"

sh build-source.sh

#check for errors
if [ $? -ne 0 ]; then
	cd "$backup"
	echo "Failed"
	exit 1
fi

echo "Pushing new revisions to launchpad..."
bzr push lp:~teejee2008/conky-manager/trunk

#check for errors
if [ $? -ne 0 ]; then
	cd "$backup"
	echo "Failed"
	exit 1
fi

cd "$backup"