1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00

fix: check to see if there are any lines before

(cherry picked from commit 59db8fd62b)
This commit is contained in:
Tom Bereknyei 2024-08-18 22:35:54 -04:00 committed by github-actions[bot]
parent 7e0f102afb
commit aab801db98

View file

@ -135,7 +135,7 @@ static void main_nix_build(int argc, char * * argv)
script = argv[1];
try {
auto lines = tokenizeString<Strings>(readFile(script), "\n");
if (std::regex_search(lines.front(), std::regex("^#!"))) {
if (!lines.empty() && std::regex_search(lines.front(), std::regex("^#!"))) {
lines.pop_front();
inShebang = true;
for (int i = 2; i < argc; ++i)