diff options
Diffstat (limited to 'trunk/src/templatepkg')
-rwxr-xr-x | trunk/src/templatepkg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/src/templatepkg b/trunk/src/templatepkg index 8cc2bd6..43ccf13 100755 --- a/trunk/src/templatepkg +++ b/trunk/src/templatepkg @@ -213,7 +213,7 @@ function template_update { components="$TEMPLATE_BASE.template $TEMPLATE_BASE.perms $TEMPLATE_BASE.d $TEMPLATE_BASE.s" for component in $components; do - if [ ! -a "$component" ]; then + if [ ! -e "$component" ]; then echo $BASENAME: template component not found: $component echo $BASENAME: please run $BASENAME -c before update a template exit 1 |