Skip to content

Commit 3151fc5

Browse files
dengeltjackpot51
authored andcommitted
support CARGO_TARGET_DIR
1 parent 4245104 commit 3151fc5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

justfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ base-dir := absolute_path(clean(rootdir / prefix))
88

99
export INSTALL_DIR := base-dir / 'share'
1010

11-
bin-src := 'target' / 'release' / name
11+
cargo-target-dir := env('CARGO_TARGET_DIR', 'target')
12+
bin-src := cargo-target-dir / 'release' / name
1213
bin-dst := base-dir / 'bin' / name
1314

1415
desktop := APPID + '.desktop'

0 commit comments

Comments
 (0)