AppFlowy/frontend/scripts/makefile/tool.toml

27 lines
363 B
TOML
Raw Normal View History

2022-05-27 12:26:33 +00:00
[tasks.rust_clean]
script = [
"""
cd rust-lib
cargo clean
cd ../../shared-lib
cargo clean
rm -rf lib-infra/.cache
""",
]
script_runner = "@shell"
[tasks.rust_clean.windows]
script = [
"""
cd rust-lib
cargo clean
cd ../../shared-lib
cargo clean
rmdir /s/q "lib-infra/.cache"
""",
]
script_runner = "@duckscript"