aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2021-05-13 13:06:29 +0200
committerGitHub <noreply@github.com>2021-05-13 13:06:29 +0200
commit89a4ede92bd873e5fb2b06c5c52ede5df1ce512b (patch)
treef91d42cba3fab945eeea24e00a6e3c25e685aaac /src
parentba8b39c13003c8ddafb6bec308997e09b9851c46 (diff)
parent8c7e043de2f673bc355d83f1e873baa93f30be62 (diff)
Merge pull request #4801 from matthewbauer/fix-tokenize-output-names
Fix tokenize output names in DerivedPath
Diffstat (limited to 'src')
-rw-r--r--src/libstore/derived-path.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/derived-path.cc b/src/libstore/derived-path.cc
index 13833c58e..9cfbf50d9 100644
--- a/src/libstore/derived-path.cc
+++ b/src/libstore/derived-path.cc
@@ -62,7 +62,7 @@ DerivedPath::Built DerivedPath::Built::parse(const Store & store, std::string_vi
auto outputsS = s.substr(n + 1);
std::set<string> outputs;
if (outputsS != "*")
- outputs = tokenizeString<std::set<string>>(outputsS);
+ outputs = tokenizeString<std::set<string>>(outputsS, ",");
return {drvPath, outputs};
}