diff options
author | William Deegan <bill@baddogconsulting.com> | 2019-09-07 16:59:52 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2019-09-07 16:59:52 (GMT) |
commit | e5e6c58fc189f81a59c7fedb6b1781f47329826c (patch) | |
tree | 5b54f718d69d68ecedfe5017810503a6db255856 /bin | |
parent | 7acbe9f3dc6aa50d92f9851b01b767ef3408b229 (diff) | |
download | SCons-e5e6c58fc189f81a59c7fedb6b1781f47329826c.zip SCons-e5e6c58fc189f81a59c7fedb6b1781f47329826c.tar.gz SCons-e5e6c58fc189f81a59c7fedb6b1781f47329826c.tar.bz2 |
Remove scripts for svn
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/scons-review.sh | 24 |
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 |