1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 02:21:16 +02:00

Merge pull request #12039 from DeterminateSystems/gitignore

Prune unneeded .gitignore entries
This commit is contained in:
mergify[bot] 2024-12-12 02:37:50 +00:00 committed by GitHub
commit f1187cb696
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 120 deletions

View file

@ -309,7 +309,7 @@ runRepl () {
for test in $(cd "$testDir/repl"; echo *.in); do
test="$(basename "$test" .in)"
in="$testDir/repl/$test.in"
actual="$testDir/repl/$test.actual"
actual="$TEST_ROOT/$test.actual"
expected="$testDir/repl/$test.expected"
(cd "$testDir/repl"; set +x; runRepl 2>&1) < "$in" > "$actual" || {
echo "FAIL: $test (exit code $?)" >&2