aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-10-07 23:12:43 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-10-07 23:12:43 +0300
commit65bc7f78fd1a9bb729d9c8624a67a814e58c2d71 (patch)
treecba53ccd61c6c51d9bb6ae3cea5f1d63100e4452
parentrename the project (diff)
downloadconfig-links-65bc7f78fd1a9bb729d9c8624a67a814e58c2d71.tar.gz
config-links-65bc7f78fd1a9bb729d9c8624a67a814e58c2d71.zip
bugfix
-rw-r--r--update.sh20
1 files changed, 7 insertions, 13 deletions
diff --git a/update.sh b/update.sh
index 054223f..42a0f7e 100644
--- a/update.sh
+++ b/update.sh
@@ -154,13 +154,13 @@ delete_obsolete_entries() {
if [ -z "$var_name" ]; then
dump ' couldn'"'"'t extract variable name' >&2
- unset database["$entry"]
+ unset -v 'database[$entry]'
continue
fi
if [ -z "${!var_name+x}" ]; then
dump " variable is not set: $var_name" >&2
- unset database["$entry"]
+ unset -v 'database[$entry]'
continue
fi
@@ -173,12 +173,6 @@ delete_obsolete_entries() {
local dest_path="$dest_var_dir/$subpath"
local src_path="$src_var_dir/$subpath"
- if [ ! -e "$dest_path" ]; then
- dump " missing destination file: $dest_path" >&2
- unset database["$entry"]
- continue
- fi
-
if [ ! -e "$src_path" ]; then
dump " missing source file: $src_path" >&2
@@ -188,7 +182,7 @@ delete_obsolete_entries() {
dump ' won'"'"'t delete an obsolete symlink, because it'"'"'s a dry run'
fi
- unset database["$entry"]
+ unset -v 'database[$entry]'
local dest_dir
dest_dir="$( dirname "$dest_path" )"
@@ -197,9 +191,9 @@ delete_obsolete_entries() {
continue
fi
- if [ ! -L "$dest_path" ]; then
- dump " not a symlink: $dest_path" >&2
- unset database["$entry"]
+ if [ ! -L "$dest_path" ] || [ ! -e "$dest_path" ]; then
+ dump " not a symlink or doesn't exist: $dest_path" >&2
+ unset -v 'database[$entry]'
continue
fi
@@ -208,7 +202,7 @@ delete_obsolete_entries() {
if [ "$target_path" != "$src_path" ]; then
dump " points to a wrong file: $dest_path" >&2
- unset database["$entry"]
+ unset -v 'database[$entry]'
continue
fi