mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
17 lines
201 B
Bash
17 lines
201 B
Bash
#!/bin/sh
|
|
#!/usr/bin/env fish
|
|
|
|
cd rust-lib
|
|
cargo clean
|
|
|
|
cd ../../shared-lib
|
|
cargo clean
|
|
|
|
CACHE_FILE=lib-infra/.cache
|
|
if [ -d "$CACHE_FILE" ]; then
|
|
echo "Remove $CACHE_FILE"
|
|
rm -rf $CACHE_FILE
|
|
fi
|
|
|
|
|