AppFlowy/frontend/scripts/clean.sh
2022-06-15 22:28:33 +08:00

13 lines
168 B
Bash

#!/bin/sh
#!/usr/bin/env fish
cd rust-lib
cargo clean
CACHE_FILE=lib-infra/.cache
if [ -f "$CACHE_FILE" ]; then
echo "Remove $CACHE_FILE"
rm -rf $CACHE_FILE
fi