update repo-clean.sh script. actually get clean repo now

This commit is contained in:
Sagar Karandikar
2022-10-16 20:11:22 -07:00
parent a3545f2453
commit b659a3ed6a
2 changed files with 10 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ rm -rf $RDIR/toolchains/esp-tools/riscv-tests/build.log
pushd $RDIR/generators/constellation
if [ -d espresso ]
then
git submodule deinit espresso
git submodule deinit -f espresso
fi
popd
)
@@ -25,3 +25,11 @@ rm -rf $RDIR/toolchains/esp-tools/riscv-tests/build.log
git config --local status.showUntrackedFiles no
popd
)
(
pushd $RDIR/generators/cva6/src/main/resources/vsrc
if [ -d cva6 ]
then
git submodule deinit -f cva6
fi
popd
)