From 4b56f290c6807841b0ca3163c313fc6073423c38 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Wed, 16 Feb 2011 10:08:50 +0000 Subject: Add asd. --- debian/changelog | 6 ++++++ scripts/asd | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100755 scripts/asd diff --git a/debian/changelog b/debian/changelog index 1cd4905..6788a69 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +liw-automation (8.10) squeeze; urgency=low + + * Add asd. + + -- Lars Wirzenius Wed, 16 Feb 2011 10:08:41 +0000 + liw-automation (8.9) squeeze; urgency=low * New upstream release: better disp. diff --git a/scripts/asd b/scripts/asd new file mode 100755 index 0000000..4b42157 --- /dev/null +++ b/scripts/asd @@ -0,0 +1,47 @@ +#!/bin/sh +# asd -- wrapper around sd +# Copyright 2010 Lars Wirzenius +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + + +set -e + + +die() +{ + echo "$@" 1>&2 + exit 1 +} + + +if [ "x$SD_REPO" = "x" ] +then + if bzr root > /dev/null 2>&1 + then + root=$(bzr root) + if [ -d "$root/../bugs" ] + then + export SD_REPO="$root/../bugs" + fi + fi + + if [ "x$SD_REPO" = "x" ] + then + die "Cannot find bug database for SD." + fi +fi + + +sd "$@" -- cgit v1.2.1