We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23eb94e commit 52e06f6Copy full SHA for 52e06f6
flake.nix
@@ -87,17 +87,21 @@
87
installPhase = ''
88
runHook preInstall
89
90
- mkdir -p $out/bin
91
- cp build/release/lute/cli/lute $out/bin/lute
+ BIN_PATH="$(build/lute0 tools/luthier.luau generate --which --config release Lute.CLI)"
+
92
+ mkdir -p "$out/bin"
93
+ cp "$BIN_PATH" "$out/bin/lute"
94
95
runHook postInstall
96
'';
97
98
checkPhase = ''
99
runHook preCheck
100
101
+ BIN_PATH="$(build/lute0 tools/luthier.luau generate --which --config release Lute.Test)"
102
103
export HOME="$TMPDIR"
- ./build/release/tests/lute-tests
104
+ "$BIN_PATH"
105
106
runHook postCheck
107
0 commit comments