Codebase list conky-manager / 35e29512-1a9a-4b0b-9121-6dbe25618007/main build-deb.sh
35e29512-1a9a-4b0b-9121-6dbe25618007/main

Tree @35e29512-1a9a-4b0b-9121-6dbe25618007/main (Download .tar.gz)

build-deb.sh @35e29512-1a9a-4b0b-9121-6dbe25618007/mainraw · history · blame

#!/bin/bash

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

rm -rf ../builds

bzr builddeb --native --build-dir ../builds/temp --result-dir ../builds

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

ls -l ../builds

cd "$backup"