-rw-r--r-- | doc/tag-photo.bash | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/tag-photo.bash b/doc/tag-photo.bash index 83f10fd..5917f12 100644 --- a/doc/tag-photo.bash +++ b/doc/tag-photo.bash @@ -44,7 +44,7 @@ END { -[[ -z "$APS" ]] && { echo "no access points" ; exit ; } +[[ -z "$APS" ]] && { echo "no access points" ; return 2>/dev/null || exit ; } WL="$(wps_locate "$APS")" -[[ -z "$WL" ]] && { echo "couldn't find location" ; exit ; } +[[ -z "$WL" ]] && { echo "couldn't find location" ; return 2>/dev/null || exit ; } eval "$WL" -[[ -z "$wl_latitude" || -z "$wl_longitude" || -z "$wl_hpe" ]] && { echo "invalid location ($WL)"; exit; } +[[ -z "$wl_latitude" || -z "$wl_longitude" || -z "$wl_hpe" ]] && { echo "invalid location ($WL)"; return 2>/dev/null || exit; } [[ "${wl_latitude:0:1}" = '-' ]] && wl_latitude="${wl_latitude:1}" wl_latitude_ref=S || wl_latitude_ref=N |