mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-04-16 23:06:08 -05:00
only delete downloaded archives per toolchain version
This commit is contained in:
parent
90da8281c2
commit
c91cec00e2
|
|
@ -357,7 +357,15 @@ read answer
|
|||
if [ "$answer" = "y" -o "$answer" = "Y" ]
|
||||
then
|
||||
echo "removing archives"
|
||||
rm -f $SRCDIR/$BINUTILS $SRCDIR/$GCC_CORE $SRCDIR/$GCC_GPP $SRCDIR/$NEWLIB $SRCDIR/$LIBGBA $SRCDIR/$LIBNDS $SRCDIR/$LIBOGC $SRCDIR/$PSPSDK
|
||||
rm -f $SRCDIR/$BINUTILS $SRCDIR/$GCC_CORE $SRCDIR/$GCC_GPP $SRCDIR/$NEWLIB
|
||||
if [ $VERSION -eq 1 ]
|
||||
then
|
||||
rm -f $SRCDIR/$LIBGBA $SRCDIR/$LIBNDS
|
||||
fi
|
||||
if [ $VERSION -eq 2 ]
|
||||
then
|
||||
rm -f $SRCDIR/$LIBOGC
|
||||
fi
|
||||
fi
|
||||
|
||||
echo
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user