summaryrefslogtreecommitdiff
path: root/move-protos
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2018-02-01 15:07:35 -0500
committerAdam Jackson <ajax@redhat.com>2018-02-01 15:07:35 -0500
commit866582439ac2410e5ae98c3387718b7a28e04917 (patch)
tree1b23e82ad57ad46edf7a227aff0fe544efcec0cc /move-protos
parent193b75db8c1aa9d91d079901d7da98ec72810378 (diff)
Move the migration scripts and data to the attic
Signed-off-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'move-protos')
-rw-r--r--move-protos21
1 files changed, 0 insertions, 21 deletions
diff --git a/move-protos b/move-protos
deleted file mode 100644
index 8539ae9..0000000
--- a/move-protos
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-
-case $# in
- 1)
- me="$1"
- ;;
- *)
- echo 'Usage: $0 <my-name>'
- exit 1
- ;;
-esac
-
-for i in `cat duplicate-files`; do
- if [ -f $i ]; then
- mkdir -p $me/`dirname $i`
- echo git mv $i $me/$i
- git mv $i $me/$i
- fi
-done
-
-git commit -m"Move common $me files out of the way"