clean compose/frameworks/support IDE files and temp files (#2949)

This commit is contained in:
dima.avdeev
2023-03-31 11:14:43 +03:00
committed by GitHub
parent 5d3bfa2385
commit 45fa56eb76

18
compose/scripts/clean Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
cd "$(dirname "$0")"
pushd ../frameworks/support
echo "--------------------------------------------------------"
echo "This command will remove those files added to .gitignore"
git clean -ndX
read -p "Do you want to remove this files? (y/n) " yn
case $yn in
y ) git clean -fdX;;
n ) exit;;
* ) exit 1;;
esac
popd