aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Kelling <iank@fsf.org>2018-07-25 21:14:31 -0400
committerIan Kelling <iank@fsf.org>2018-07-25 21:14:31 -0400
commit68fcd92e73345ede4353c62926879891062bf5c1 (patch)
treedf00b4c574ab5c8b4a1d8a2b51135741366edb43
parentb6ca88eb4793b3442ba6b1fe350169a7e0668945 (diff)
stop printing things that look like stack traces that arent
-rwxr-xr-xsubprojects/freeamo/freeamo24
1 files changed, 12 insertions, 12 deletions
diff --git a/subprojects/freeamo/freeamo b/subprojects/freeamo/freeamo
index abd8250..9ee84f3 100755
--- a/subprojects/freeamo/freeamo
+++ b/subprojects/freeamo/freeamo
@@ -151,11 +151,11 @@ Disabled options due to limited development time
--search-pages)
# This option is named after named after https://addons.mozilla.org/en-US/firefox/search/
- freeamo_command="$0 --search-pages--download $debug_arg :"
- echo " ↳$freeamo_command"; $freeamo_command
+ freeamo_command="$0 --search-pages--download $debug_arg"
+ echo "$freeamo_command"; $freeamo_command
- freeamo_command="$0 --search-pages--filter $debug_arg :"
- echo " ↳$freeamo_command"; $freeamo_command
+ freeamo_command="$0 --search-pages--filter $debug_arg"
+ echo "$freeamo_command"; $freeamo_command
;;
@@ -177,11 +177,11 @@ Disabled options due to limited development time
--get-licenses)
- freeamo_command="$0 --get-licenses--download $debug_arg :"
- echo " ↳$freeamo_command"; $freeamo_command
+ freeamo_command="$0 --get-licenses--download $debug_arg"
+ echo "$freeamo_command"; $freeamo_command
- freeamo_command="$0 --get-licenses--filter $debug_arg :"
- echo " ↳$freeamo_command"; $freeamo_command
+ freeamo_command="$0 --get-licenses--filter $debug_arg"
+ echo "$freeamo_command"; $freeamo_command
;;
@@ -202,11 +202,11 @@ Disabled options due to limited development time
--get-add-ons)
- freeamo_command="$0 --get-add-ons--download $debug_arg :"
- echo " ↳$freeamo_command"; $freeamo_command
+ freeamo_command="$0 --get-add-ons--download $debug_arg"
+ echo "$freeamo_command"; $freeamo_command
- freeamo_command="$0 --get-add-ons--filter $debug_arg :"
- echo " ↳$freeamo_command"; $freeamo_command
+ freeamo_command="$0 --get-add-ons--filter $debug_arg"
+ echo "$freeamo_command"; $freeamo_command
;;