Codebase list conky-manager / 3bcecc94-0a78-4371-9432-de610f87d83d/main push.sh
3bcecc94-0a78-4371-9432-de610f87d83d/main

Tree @3bcecc94-0a78-4371-9432-de610f87d83d/main (Download .tar.gz)

push.sh @3bcecc94-0a78-4371-9432-de610f87d83d/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"