diff options
author | zotlabs <mike@macgirvin.com> | 2018-05-03 23:20:09 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-05-03 23:20:09 -0700 |
commit | 56113b0bde6ea78f1ac0c61eb6ca9324900035c2 (patch) | |
tree | fcde594f53a36d345df4916a67ef5e3971f96486 /util/update_widget_repo | |
parent | b52e9731e39125f5911fe6795ef34eb1f183d4b3 (diff) | |
download | volse-hubzilla-56113b0bde6ea78f1ac0c61eb6ca9324900035c2.tar.gz volse-hubzilla-56113b0bde6ea78f1ac0c61eb6ca9324900035c2.tar.bz2 volse-hubzilla-56113b0bde6ea78f1ac0c61eb6ca9324900035c2.zip |
check for directories
Diffstat (limited to 'util/update_widget_repo')
-rwxr-xr-x | util/update_widget_repo | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util/update_widget_repo b/util/update_widget_repo index 045122619..8ef5eba27 100755 --- a/util/update_widget_repo +++ b/util/update_widget_repo @@ -25,6 +25,10 @@ for a in "${filelist[@]}" ; do # echo 'ignoring git' continue; fi + if [ ! -d ../extend/widget/$1/$base ]; then +# echo $a 'not a directory' + continue; + fi if [ -x $base ]; then # echo $base 'file exists' continue; |