Codebase list conky-manager / 9deb4f6c-cd40-4592-8343-421d316046f4/main build-install.sh
9deb4f6c-cd40-4592-8343-421d316046f4/main

Tree @9deb4f6c-cd40-4592-8343-421d316046f4/main (Download .tar.gz)

build-install.sh @9deb4f6c-cd40-4592-8343-421d316046f4/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"