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

parseStorePath: Support leading period

(cherry picked from commit b13e6a76b4)
This commit is contained in:
Robert Hensing 2024-01-27 11:19:05 +01:00 committed by github-actions[bot]
parent 0f4db25957
commit f36832ce13
2 changed files with 11 additions and 0 deletions

View file

@ -62,6 +62,7 @@ TEST_DO_PARSE(underscore, "foo_bar")
TEST_DO_PARSE(period, "foo.txt")
TEST_DO_PARSE(question_mark, "foo?why")
TEST_DO_PARSE(equals_sign, "foo=foo")
TEST_DO_PARSE(dotfile, ".gitignore")
#undef TEST_DO_PARSE