Codebase list conky-manager / lintian-fixes/main build-deb.sh
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

build-deb.sh @lintian-fixes/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"