Codebase list conky-manager / b1150731-eb82-4004-be40-78881fb0af0f/main build-install.sh
b1150731-eb82-4004-be40-78881fb0af0f/main

Tree @b1150731-eb82-4004-be40-78881fb0af0f/main (Download .tar.gz)

build-install.sh @b1150731-eb82-4004-be40-78881fb0af0f/mainraw · history · blame

#!/bin/bash

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

sh build-deb.sh

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

sudo gdebi --non-interactive ../builds/conky-manager*.deb

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

cd "$backup"