mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-04-24 14:47:13 -04:00
13 lines
168 B
Bash
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
|
|
|
|
|