Skip to content

Commit

Permalink
Update entrypoint.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Apr 19, 2023
1 parent 3e53743 commit aea97c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ set -ex
INPUT_SEPARATOR="${INPUT_SEPARATOR//\%/%25}"
INPUT_SEPARATOR="${INPUT_SEPARATOR//\./%2E}"

NEWLINE_SEPARATOR=$'\n'
NEWLINE_SEPARATOR="\n"
URLENCODED_NEWLINE_SEPARATOR='%0A'
INPUT_SEPARATOR="${INPUT_SEPARATOR//$NEWLINE_SEPARATOR/$URLENCODED_NEWLINE_SEPARATOR}"

CARRIAGE_RETURN=$'\r'
CARRIAGE_RETURN="\r"
URLENCODED_CARRIAGE_RETURN='%0D'
INPUT_SEPARATOR="${INPUT_SEPARATOR//$CARRIAGE_RETURN/$URLENCODED_CARRIAGE_RETURN}"

Expand Down

0 comments on commit aea97c9

Please sign in to comment.