Skip to content

Commit 94a1981

Browse files
committed
More justfile windows fixes.
1 parent 77499df commit 94a1981

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

justfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ default:
66
@just --list
77

88
py-build:
9-
cd crates/processing_pyo3 && uv run maturin develop --release
9+
cd crates/processing_pyo3; uv run maturin develop --release
1010

1111
py-run file: py-build
12-
cd crates/processing_pyo3 && uv run python ./examples/{{file}}
12+
cd crates/processing_pyo3; uv run python ./examples/{{file}}
1313

1414
py-jupyter file: py-build
15-
cd crates/processing_pyo3 && uv run jupyter notebook ./examples/{{file}}
15+
cd crates/processing_pyo3; uv run jupyter notebook ./examples/{{file}}
1616

1717
py-ipython: py-build
18-
cd crates/processing_pyo3 && ipython
18+
cd crates/processing_pyo3; ipython
1919

2020
wasm-build:
2121
wasm-pack build crates/processing_wasm --target web --out-dir ../../target/wasm

0 commit comments

Comments
 (0)