diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-04-06 04:23:10 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-04-06 04:23:10 +0000 |
commit | 016b7fe6722b9853f4fb7e2aaa185907d39678de (patch) | |
tree | 79da26ea97a64205b2d61a99abaa248e915117aa /trunk/src | |
parent | a9b660c043992eff708f18e7addaa98a0c423ee6 (diff) | |
download | simplepkg-016b7fe6722b9853f4fb7e2aaa185907d39678de.tar.gz simplepkg-016b7fe6722b9853f4fb7e2aaa185907d39678de.tar.bz2 |
jail-commit: small fix
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@288 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'trunk/src')
-rwxr-xr-x | trunk/src/jail-commit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/src/jail-commit b/trunk/src/jail-commit index 44e7ddf..e09ca3e 100755 --- a/trunk/src/jail-commit +++ b/trunk/src/jail-commit @@ -62,7 +62,7 @@ function template_merge { elif [ -s "$file" ]; then if [ "`readlink $file`" != "`readlink $1/$file`" ]; then rm -f $file - ln -s \"`readlink $1/$file`\" $file + ln -s `readlink $1/$file` $file fi fi |