Skip to content
Snippets Groups Projects
Commit 214ae5df authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

fix(envsubst): leave lines with '# nosubst' unchanged when substituting (used to be simply dropped)

parent d639783d
No related branches found
No related tags found
No related merge requests found
......@@ -568,7 +568,11 @@ stages:
}
return enc
}
!/# *nosubst/ {
/# *nosubst/ {
print $0
next
}
{
orig_line = $0
line = $0
count_repl_in_line = 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment