1 files changed, 13 insertions, 0 deletions
diff --git a/archrm b/archrm new file mode 100755 index 0000000..855e9f5 --- /dev/null +++ b/ archrm@@ -0,0 +1,13 @@ +#!/bin/bash + +if [ "$1" = "" ]; then + echo "Usage: archrm <path to checkout>" + exit 1 +fi + +# FIXME: Check if there are uncommited changes +#pushd $1 +# +#popd + +rm -rf $1 |