starmelon/starmelon-binary.do
nobody ac97ac37db
chore: upgrade deno_* crates to Mar 2024
The way extensions are injected into the Isolate changed dramatically
between Sept 2021 and Jan 2024. Now ops are available in the virtual
module ext:core/ops.
2025-11-23 19:34:17 -08:00

15 lines
607 B
Text

BINARY_PATH="../../target/release/starmelon"
redo-ifchange Cargo.toml
find src/ -type f | xargs redo-ifchange
find ../../../infra/rust-elmi/src -type f | xargs redo-ifchange
find ../../../infra/redwood-lang/compiler/naive-wadler-prettier/src -type f | xargs redo-ifchange
find ../../../infra/rust-elm-project-utils/src -type f | xargs redo-ifchange
find ../../../infra/genco-extra/src -type f | xargs redo-ifchange
find ../../../infra/livetable/core/src -type f | xargs redo-ifchange
if [ ! -f "$BINARY_PATH" ]; then
cargo build --release --color=always
else
ls -al "$BINARY_PATH" | redo-stamp
fi