fixed really old way of thinking about home on windows.
[feisty_meow.git] / scripts / rev_control / svn_rm_dupes.sh
index 294c779862e0562a1b41b8591bfa6f155c92b71b..70448ddedba832ab2bb0ceb8be63454f52234f37 100644 (file)
@@ -7,6 +7,8 @@
 exemplar_dir="$1"; shift
 whack_dir="$1"; shift
 
+#hmmm: much code here is shared with whack_dupes.  get into a library.
+
 # make sure they gave us a good directory to start with.
 if [ -z "$exemplar_dir" ]; then
   echo "whack_dupes"
@@ -44,6 +46,12 @@ if [ ! -z "$whack_dir" ]; then
   pushd "$whack_dir" &>/dev/null
 fi
 
+# now that we're in the directory to clean, make sure we're good there.
+if [ ! -d ".svn" ]; then
+#  echo "Could not find a subversion directory; operation would be pointless."
+  exit 0
+fi
+
 current_dir="$(pwd)"
 
 #echo "currdir=$current_dir gooddir=$the_good_place"