Skip to content

Commit

Permalink
Backslash character fix
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrmilcarz committed Jun 5, 2019
1 parent 7e65a80 commit e988dd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/travis/build/bash/travis_cmd.bash
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ travis_cmd() {
result="${?}"
if [[ -n "${secure}" && "${result}" -ne 0 ]]; then
echo -e "${ANSI_RED}We were unable to parse one of your secure environment variables.${ANSI_CLEAR}
${ANSI_RED}Please make sure to escape special characters such as ' ' (white space) and $ (dollar symbol) with \ (backslash) .${ANSI_CLEAR}
${ANSI_RED}For example, thi$isanexample would be typed as thi\$isanexample. See https://docs.travis-ci.com/user/encryption-keys.${ANSI_CLEAR}"
${ANSI_RED}Please make sure to escape special characters such as ' ' (white space) and $ (dollar symbol) with \\ (backslash) .${ANSI_CLEAR}
${ANSI_RED}For example, thi\$isanexample would be typed as thi\\\$isanexample. See https://docs.travis-ci.com/user/encryption-keys.${ANSI_CLEAR}"
fi
fi

Expand Down

0 comments on commit e988dd0

Please sign in to comment.