Skip to content

Commit

Permalink
Update justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
utensil authored Oct 14, 2024
1 parent ee0f9ed commit b2e1d25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yard-rs/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ example_xp := justfile_directory() / "example-xp"
# export LIBTORCH := if os() == "windows" { "" } else { join(mm_packages , "torch") }

LIBTORCH_PREFIX := clean(join(justfile_directory() , ".." , ".."))
export LIBTORCH := if os() == "windows" { "" } else { join(LIBTORCH_PREFIX, "libtorch") }
export LIBTORCH := join(LIBTORCH_PREFIX, "libtorch")
env_sep := if os() == "windows" { ";" } else { ":" }
export PATH := join(LIBTORCH, "lib") + env_sep + env_var("PATH")

Expand Down

0 comments on commit b2e1d25

Please sign in to comment.