mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
feat: add flowy_clean command to remove the build.rs cache
This commit is contained in:
7
frontend/scripts/clean.cmd
Normal file
7
frontend/scripts/clean.cmd
Normal file
@ -0,0 +1,7 @@
|
||||
cd rust-lib
|
||||
cargo clean
|
||||
|
||||
cd ../../shared-lib
|
||||
cargo clean
|
||||
|
||||
rmdir /s/q lib-infra/.cache
|
10
frontend/scripts/clean.sh
Normal file
10
frontend/scripts/clean.sh
Normal file
@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
#!/usr/bin/env fish
|
||||
|
||||
cd rust-lib
|
||||
cargo clean
|
||||
|
||||
cd ../../shared-lib
|
||||
cargo clean
|
||||
|
||||
rm -rf lib-infra/.cache
|
Reference in New Issue
Block a user