1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-12-04 17:09:47 +01:00

firefox: fix tests

(cherry picked from commit 18461b5dda)
This commit is contained in:
Robert Helgesson 2021-11-25 08:21:54 +01:00
parent 2a8974098b
commit 5721e19975
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ with lib;
preferLocalBuild = true;
allowSubstitutes = false;
} ''
mkdir -p "$out/bin"
mkdir -p "$out"/{bin,lib}
touch "$out/bin/firefox"
chmod 755 "$out/bin/firefox"
'';

View file

@ -15,7 +15,7 @@ with lib;
preferLocalBuild = true;
allowSubstitutes = false;
} ''
mkdir -p "$out/bin"
mkdir -p "$out"/{bin,lib}
touch "$out/bin/firefox"
chmod 755 "$out/bin/firefox"
'';