-
Notifications
You must be signed in to change notification settings - Fork 512
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix template (-t) handling of multi-line variables
I'm noticing that multi-line variables aren't properly templated. This input: ``` FOO=BAR FOO2="BAR2 BAR2 BAR2 BAR2" FOO3=BAR3 ``` produces this output: ``` FOO=FOO FOO2=FOO2 BAR2 BAR2 BAR2" FOO3=FOO3 ``` My expectation is that it would instead produce this output: ``` FOO=FOO FOO2=FOO2 FOO3=FOO3 ```
- Loading branch information
1 parent
c9ecfa4
commit 1982e3c
Showing
2 changed files
with
38 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters