AppFlowy/frontend/scripts/makefile/tool.toml

29 lines
448 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
2022-06-16 00:30:26 +00:00
CACHE_FILE=lib-infra/.cache
if [ -d "$CACHE_FILE" ]; then
echo "Remove $CACHE_FILE"
rm -rf $CACHE_FILE
fi
2022-05-27 12:26:33 +00:00
""",
]
script_runner = "@shell"
[tasks.rust_clean.windows]
script = [
"""
cd rust-lib
cargo clean
cd ../../shared-lib
rmdir /s/q "lib-infra/.cache"
""",
]
script_runner = "@duckscript"