diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2012-10-18 15:12:33 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2012-10-18 15:12:33 +0200 |
commit | 64e4505a2f30b1ddf027ffd43898efa7bdfdd8d7 (patch) | |
tree | 28ee4b9c443b2e71f825f820f4e8e09e4345004c /test/data/app-a/scripts | |
parent | 190fbfc45fb1df608a34bd775b84564e872ab4dc (diff) | |
download | app.sh-64e4505a2f30b1ddf027ffd43898efa7bdfdd8d7.tar.gz app.sh-64e4505a2f30b1ddf027ffd43898efa7bdfdd8d7.tar.bz2 app.sh-64e4505a2f30b1ddf027ffd43898efa7bdfdd8d7.tar.xz app.sh-64e4505a2f30b1ddf027ffd43898efa7bdfdd8d7.zip |
o Changing the current symlink before running postinstall.
Diffstat (limited to 'test/data/app-a/scripts')
-rw-r--r-- | test/data/app-a/scripts/postinstall | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/data/app-a/scripts/postinstall b/test/data/app-a/scripts/postinstall index c1a0cf1..dc176ff 100644 --- a/test/data/app-a/scripts/postinstall +++ b/test/data/app-a/scripts/postinstall @@ -4,7 +4,7 @@ echo "Hello World!" if [ -d etc/$APPSH_INSTANCE ] then - find etc/$APPSH_INSTANCE -type f -maxdepth 1 | while read file + find etc/$APPSH_INSTANCE -maxdepth 1 -type f | while read file do cp $file . done |