diff options
author | monsta <[email protected]> | 2018-01-12 20:04:25 +0300 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-01-14 15:36:26 +0100 |
commit | 6c162ba243f9e62651a13ce2cb4ca2ec9d422509 (patch) | |
tree | 6c91f9552d37e05cc413de376f6e8a527bbbfc02 /cut-n-paste-code/libegg/update-from-egg.sh | |
parent | f8482dd96bf98d1b14e3f62d3b3a2be44fdc26a4 (diff) | |
download | caja-6c162ba243f9e62651a13ce2cb4ca2ec9d422509.tar.bz2 caja-6c162ba243f9e62651a13ce2cb4ca2ec9d422509.tar.xz |
move libegg to the top srcdir and drop some leftovers
Diffstat (limited to 'cut-n-paste-code/libegg/update-from-egg.sh')
-rwxr-xr-x | cut-n-paste-code/libegg/update-from-egg.sh | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/cut-n-paste-code/libegg/update-from-egg.sh b/cut-n-paste-code/libegg/update-from-egg.sh deleted file mode 100755 index 9be68a9b..00000000 --- a/cut-n-paste-code/libegg/update-from-egg.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -function die() { - echo $* - exit 1 -} - -if test -z "$EGGDIR"; then - echo "Must set EGGDIR" - exit 1 -fi - -if test -z "$EGGFILES"; then - echo "Must set EGGFILES" - exit 1 -fi - -for FILE in $EGGFILES; do - if cmp -s $EGGDIR/$FILE $FILE; then - echo "File $FILE is unchanged" - else - cp $EGGDIR/$FILE $FILE || die "Could not move $EGGDIR/$FILE to $FILE" - echo "Updated $FILE" - fi -done |