1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

tests/labwc: fix autostart

Wasn't using a normalized store path, didn't notice in review.
This commit is contained in:
Austin Horstman 2025-04-18 10:58:45 -05:00
parent 4d6a8f590e
commit fc09cb7aaa
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
#!/nix/store/58br4vk3q5akf4g8lx0pqzfhn47k3j8d-bash-5.2p37/bin/bash
#!/nix/store/00000000000000000000000000000000-bash/bin/bash
### This file was generated with Nix. Don't modify this file directly.
### AUTOSTART SERVICE ###

View file

@ -13,6 +13,6 @@
labwcAutostart=home-files/.config/labwc/autostart
assertFileExists "$labwcAutostart"
assertFileContent "$labwcAutostart" "${./autostart}"
assertFileContent $(normalizeStorePaths "$labwcAutostart") "${./autostart}"
'';
}