Skip to content

Commit

Permalink
fix call to arch
Browse files Browse the repository at this point in the history
  • Loading branch information
sandydoo committed Feb 20, 2025
1 parent 834e35d commit 916b909
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/wrap-x86-program.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let
name:
writeScript "wrapped-${name}" ''
#!/bin/sh
exec arch -x86_64 ${pkg}/bin/${name} "$@"
exec /usr/bin/arch -x86_64 ${pkg}/bin/${name} "$@"
'';

binFiles = builtins.attrNames (builtins.readDir "${pkg}/bin");
Expand Down

0 comments on commit 916b909

Please sign in to comment.