mirror of
https://git.planet-casio.com/Lephenixnoir/sh-elf-gcc.git
synced 2024-12-28 20:43:39 +01:00
remove build folder when deciding to skip build, take 2
This commit is contained in:
parent
2d8919397f
commit
85f87acb15
1 changed files with 3 additions and 0 deletions
|
@ -27,6 +27,9 @@ fi
|
||||||
if [[ ! -z "$ACCEPT_ANY" ]]; then
|
if [[ ! -z "$ACCEPT_ANY" ]]; then
|
||||||
if command -v sh-elf-gcc >/dev/null 2>&1; then
|
if command -v sh-elf-gcc >/dev/null 2>&1; then
|
||||||
echo "$TAG sh-elf-gcc in PATH and ACCEPT_ANY is set, skipping build"
|
echo "$TAG sh-elf-gcc in PATH and ACCEPT_ANY is set, skipping build"
|
||||||
|
if [[ -e build ]]; then
|
||||||
|
rm -rf build
|
||||||
|
fi
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue