Skip to content
This repository has been archived by the owner on Apr 7, 2018. It is now read-only.

Commit

Permalink
Properly escape ampersand on ENV vars substitution
Browse files Browse the repository at this point in the history
  • Loading branch information
take-five committed Nov 3, 2016
1 parent 4ca0a84 commit 12c3b7c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions priv/rel/files/boot
Expand Up @@ -33,6 +33,7 @@ _replace_os_vars() {
awk '
function escape(s) {
gsub(/\\/, "\\\\", s);
gsub(/\&/, "\\\\&", s);
return s;
}
{
Expand Down

0 comments on commit 12c3b7c

Please sign in to comment.