diff options
author | lassulus <lassulus@googlemail.com> | 2013-12-30 02:56:54 +0100 |
---|---|---|
committer | lassulus <lassulus@googlemail.com> | 2013-12-30 02:56:54 +0100 |
commit | 25a23e52b90e753f3a91f315fbdee6b1c1a14f45 (patch) | |
tree | 0ffc3c9404f59a151637fa16d609be8bbae63179 /crypto/git | |
parent | 75f19c77fb0e59e8298b784cdeaceb8cc3bd4931 (diff) |
krebs: moved crypto to Cancer
Diffstat (limited to 'crypto/git')
-rwxr-xr-x | crypto/git/git-eternal-move | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/crypto/git/git-eternal-move b/crypto/git/git-eternal-move deleted file mode 100755 index 50361e7b..00000000 --- a/crypto/git/git-eternal-move +++ /dev/null @@ -1,15 +0,0 @@ -#! /bin/sh -# -# git-eternal-move FROM TO-DIRECTORY -# -set -euf -if test $# -ne 2; then - echo 'Error 1: You are made of stupid!' >&2 - exit 23 -fi -exec git filter-branch --tree-filter " - set -euf - if test -e '$1'; then - mkdir -p '$2' - mv '$1' '$2' - fi" |