Skip to content

Commit

Permalink
support CARGO_TARGET_DIR
Browse files Browse the repository at this point in the history
  • Loading branch information
dengelt authored and jackpot51 committed Jul 15, 2024
1 parent d7e4693 commit 631893f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ base-dir := absolute_path(clean(rootdir / prefix))

export INSTALL_DIR := base-dir / 'share'

bin-src := 'target' / 'release' / name
cargo-target-dir := env('CARGO_TARGET_DIR', 'target')
bin-src := cargo-target-dir / 'release' / name
bin-dst := base-dir / 'bin' / name

desktop := APPID + '.desktop'
Expand Down

0 comments on commit 631893f

Please sign in to comment.