Commit 7bf2654c authored by Dylan Araps's avatar Dylan Araps

trim_quotes: Fix bug with only one type of quote being removed

parent 6cd4584f
...@@ -2394,7 +2394,7 @@ trim() { ...@@ -2394,7 +2394,7 @@ trim() {
trim_quotes() { trim_quotes() {
trim_output="${1//\'}" trim_output="${1//\'}"
trim_output="${1//\"}" trim_output="${trim_output//\"}"
printf "%s" "$trim_output" printf "%s" "$trim_output"
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment