diff options
Diffstat (limited to 'src/rvs-core/commit.sh')
-rw-r--r-- | src/rvs-core/commit.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rvs-core/commit.sh b/src/rvs-core/commit.sh index 189c8b9..7fe1221 100644 --- a/src/rvs-core/commit.sh +++ b/src/rvs-core/commit.sh @@ -21,9 +21,9 @@ else file='.' fi -if [ ! -e $file]; then error "file \`$file' does not exist"; +if [ ! -e $file ]; then error "file \`$file' does not exist"; # START file type list -elif [ -l $file ]; then type='l'; # symbolic link +elif [ -L $file ]; then type='l'; # symbolic link elif [ -b $file ]; then type='b'; # block (buffered) special elif [ -c $file ]; then type='c'; # character (unbuffered) special elif [ -d $file ]; then type='d'; # directory |