#!/bin/bash

if [ ! -d "~/scripts" ]; then
	debug.log "scripts does not exist: doing checkout"
	svn checkout --username donges https://bp2p.hypernova.it/svn/cquadrat/CompanyRepository/IT/1\ new\ user\ artifacts/user.home/scripts/ ~/scripts
else
	debug.log "Updating scripts"
	cd ~/scripts
	svn update
fi
