diff options
author | root <root@krebs> | 2011-05-31 15:25:08 +0200 |
---|---|---|
committer | root <root@krebs> | 2011-05-31 15:27:39 +0200 |
commit | 17b5e792b9968eeb100c00996c891c38c0f5d16d (patch) | |
tree | 13a61a30e442436c6eb6e6f7f2ffe21c8a5c4f43 | |
parent | 872a6cfafd65fc5b3a1bec6ec1b73588dcd29ffc (diff) |
infest//make-patch: p{ush,op}d suck asscocks
cd wins
-rwxr-xr-x | infest/bin/make-patch | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/infest/bin/make-patch b/infest/bin/make-patch index 6f26e745..e2ef0ca0 100755 --- a/infest/bin/make-patch +++ b/infest/bin/make-patch @@ -36,22 +36,24 @@ diff -Naur $f $t >>$p readlink=`readlink -f $0` dirname=`dirname $readlink` -if pushd $dirname/../skel >/dev/null; then - if pushd etc >/dev/null; then +echo [32m$dirname/../skel[m >&2 +ls -l $dirname/../skel +if cd $dirname/../skel; then + if cd etc; then find . -mindepth 1 -maxdepth 1 -exec diff -Naur /etc/\{\} \{\} \; >>$p - popd >/dev/null + cd .. sed -i ' s:^+++ \./:+++ /etc/: ' $p fi - if pushd home >/dev/null; then + if cd home; then find . -type f -exec diff -Naur $HOME/\{\} \{\} \; >>$p - popd >/dev/null + cd .. sed -i ' s:^+++ \./:+++ '$HOME'/: ' $p fi - popd >/dev/null + cd .. fi cat $p |