aboutsummaryrefslogtreecommitdiff
path: root/trunk/src
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/src')
-rwxr-xr-xtrunk/src/jail-commit4
1 files changed, 2 insertions, 2 deletions
diff --git a/trunk/src/jail-commit b/trunk/src/jail-commit
index b801d12..f2695d7 100755
--- a/trunk/src/jail-commit
+++ b/trunk/src/jail-commit
@@ -54,12 +54,12 @@ function template_merge {
if [[ -e "$file" && -e "$1/$file" ]]; then
- if [ ! -d "$file" ] && [ ! -s "$file" ]; then
+ if [ ! -d "$file" ] && [ ! -h "$file" ]; then
if ! diff $file $1/$file; then
echo Updating $file
cp -af $1/$file $file
fi
- elif [ -s "$file" ]; then
+ elif [ -h "$file" ]; then
if [ "`readlink $file`" != "`readlink $1/$file`" ]; then
rm -f $file
ln -s `readlink $1/$file` $file