1
0
mirror of https://github.com/bebbo/amiga-gcc.git synced 2026-05-09 02:44:57 +00:00

logs are in folder log now

This commit is contained in:
bebbo
2018-08-20 16:05:22 +02:00
parent b5f49673fa
commit aa7f9c3ea3
3 changed files with 300 additions and 270 deletions

View File

@@ -30,10 +30,10 @@ case $1 in
echo wget ${a[1]}:${a[2]} -O download/$file
wget ${a[1]}:${a[2]} -O download/$file || (rm download/$file; exit 1)
fi
if [ ! -e "build/$2" ]; then
mkdir build/$2
if [ ! -e "build/$2" ] || [ "$(ls -l build/$2)" == "total 0" ]; then
mkdir -p build/$2
pushd build/$2
lha x "../../download/$file"
lha x "../../download/$file" && $3/bin/lha x "../../download/$file"
popd
fi
fi