summaryrefslogtreecommitdiff
path: root/bin/scons-review.sh
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2019-12-28 17:12:41 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2019-12-28 17:12:41 +0100
commit56597a6a68e741355b301f91d5913d59cfb34eaa (patch)
tree7531e41faf62f126984bf05b8d712f99c9520d5d /bin/scons-review.sh
parent56337453f0f3fbe34255e636d5d65974f4d17681 (diff)
New upstream version 3.1.2upstream/3.1.2upstream
Diffstat (limited to 'bin/scons-review.sh')
-rwxr-xr-xbin/scons-review.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/bin/scons-review.sh b/bin/scons-review.sh
deleted file mode 100755
index f126333..0000000
--- a/bin/scons-review.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-case "$1" in
-'') exec svn diff --diff-cmd diff -x -c $* ;;
--m) svn diff --diff-cmd diff -x -c $* | alpine scons-dev ;;
-*) echo "Error: unknown option '$1"; exit 1 ;;
-esac
-
-# OLD CODE FOR USE WITH AEGIS
-#
-#if test $# -ne 1; then
-# echo "Usage: scons-review change#" >&2
-# exit 1
-#fi
-#if test "X$AEGIS_PROJECT" = "X"; then
-# echo "scons-review: AEGIS_PROJECT is not set" >&2
-# exit 1
-#fi
-#DIR=`aegis -cd -dd $*`
-#if test "X${DIR}" = "X"; then
-# echo "scons-review: No Aegis directory for '$*'" >&2
-# exit 1
-#fi
-#(cd ${DIR} && find * -name '*,D' | sort | xargs cat) | pine scons-dev