Adds method to split and strip input config files.

This allows using triple quote variables specifying comma separated
files on different lines.
This commit is contained in:
Grzegorz Adam Hankiewicz 2013-11-08 00:41:52 +01:00
commit 4e2a51bb6b
2 changed files with 29 additions and 9 deletions

View file

@ -76,7 +76,10 @@ description = "Example .babel file."
license = "MIT"
SkipDirs = "SomeDir" ; ./SomeDir will not be installed
SkipFiles = "file.txt,file2.txt" ; ./{file.txt, file2.txt} will not be installed
SkipFiles = """
file.txt,
file2.txt,
""" ; ./{file.txt, file2.txt} will not be installed
[Deps]
Requires: "nimrod >= 0.9.2"