mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
Replace wrong (w.r.t. PATH) sed call with in-shell substitution
This commit is contained in:
parent
824b154ce8
commit
621093cb1c
1 changed files with 2 additions and 1 deletions
|
@ -12,7 +12,8 @@ needed_path="?$QUERY_STRING"
|
|||
needed_path="${needed_path#*[?&]needed_path=}"
|
||||
needed_path="${needed_path%%&*}"
|
||||
#needed_path="$(echo $needed_path | ./unhttp)"
|
||||
needed_path="$(echo $needed_path | sed -e 's/%2B/+/g; s/%3D/=/g')"
|
||||
needed_path="${needed_path//%2B/+}"
|
||||
needed_path="${needed_path//%3D/=}"
|
||||
|
||||
echo needed_path: "$needed_path" >&2
|
||||
|
||||
|
|
Loading…
Reference in a new issue