commit | e550fba0fdd02b6d00f34fd9842295ed957891b2 | [log] [tgz] |
---|---|---|
author | jgmchan <jgmchan@gmail.com> | Sat Jun 11 18:58:42 2016 +1000 |
committer | GitHub <noreply@github.com> | Sat Jun 11 18:58:42 2016 +1000 |
tree | dba83c2f193e204cdbd00723d797a1a7d8cc8741 | |
parent | 3ab1deee208aed3b4d586e498170aa136b424a25 [diff] |
Do not error if there are no 'resolved' flag files Plugins with no dependencies (like the `ansicolor` plugin) will not have created a `resolved` flag. `rm` will throw an error if the file does not exist. Set a `-f` flag to stop this.
diff --git a/install-plugins.sh b/install-plugins.sh index 630b8cd..e1150fc 100755 --- a/install-plugins.sh +++ b/install-plugins.sh
@@ -81,4 +81,4 @@ done # cleanup 'resolved' flag files -rm *.resolved +rm -f *.resolved