diff options
author | Ian Kelling <iank@fsf.org> | 2018-07-25 22:20:19 -0400 |
---|---|---|
committer | Ian Kelling <iank@fsf.org> | 2018-07-25 22:20:19 -0400 |
commit | b04e6c6a5b5dac037959a2a59ab2a59e8c0c67b7 (patch) | |
tree | e103923faafcec2c0c2e984b4440aef4afd2776e /subprojects/freeamo/src/make-wiki | |
parent | 2ed42019b366f3cd6ab8f5bd6c234a19c1ef0629 (diff) |
fix locale, fix allowable error codes
Diffstat (limited to 'subprojects/freeamo/src/make-wiki')
-rw-r--r-- | subprojects/freeamo/src/make-wiki | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subprojects/freeamo/src/make-wiki b/subprojects/freeamo/src/make-wiki index b4de1a6..94761b4 100644 --- a/subprojects/freeamo/src/make-wiki +++ b/subprojects/freeamo/src/make-wiki @@ -115,7 +115,7 @@ while IFS= read -r table; do - github_true=$(echo "$homepage_url" | grep "github.com"); + github_true=$(echo "$homepage_url" | grep "github.com") ||: # ok if grep fails if [[ $github_true != "" ]]; then @@ -213,7 +213,7 @@ at https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/ fi - echo "foo" # Must be here to work with pv + if ! $debug; then echo "foo"; fi # for pv done < "$output_file_2" # | pv__progress # End template |