diff options
author | ramon <ramongomez@us.es> | 2010-11-15 14:34:12 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2010-11-15 14:34:12 +0000 |
commit | 3f9764a3d2eee515182a9aef28ee438f6d86acc6 (patch) | |
tree | 226c20efc96cabac4495cac7ac3d0adb7337becd /repoman/bin | |
parent | cdc5f1f9592e5f3666277083e08ace33283c738d (diff) |
Corregir errata en r1343.
git-svn-id: https://opengnsys.es/svn/trunk@1344 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'repoman/bin')
-rwxr-xr-x | repoman/bin/sendFileMcast | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/repoman/bin/sendFileMcast b/repoman/bin/sendFileMcast index 94dcfb37..ee934503 100755 --- a/repoman/bin/sendFileMcast +++ b/repoman/bin/sendFileMcast @@ -33,7 +33,7 @@ if [ "${FICH:0:1}" != "/" ]; then else FICHIMG="$FICH" fi -if [ ! -f $FICHIMG]; then +if [ ! -f "$FICHIMG" ]; then echo "$PROG Error: Fichero \"$FICH\" no accesible" >&2 exit 2 fi |