From edfded107a7a573c06894d5ade48b4a1d7a3e265 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 14 Sep 2019 20:26:53 +0200 Subject: Fixed tmp file deletion --- build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'build.sh') diff --git a/build.sh b/build.sh index 3da9389..ab562f1 100755 --- a/build.sh +++ b/build.sh @@ -12,15 +12,15 @@ mkdir ./build/ i686-elf-as ./src/boot.s -o ./build/boot.o files="" -find ./src -name \*.c > ./build/tmp +find ./src -name \*.c >./build/tmp while read -r line; do stripped=$(echo "${line}" | sed -r 's/\//_/g') stripped=${stripped#??????} stripped=${stripped%%?}o i686-elf-gcc -c ./"${line}" -o ./build/"${stripped}" -std=gnu99 -ffreestanding -O2 -Wall -Wextra files="${files} ./build/${stripped}" -done < ./build/tmp -rm tmp +done <./build/tmp +rm ./build/tmp # shellcheck disable=SC2086 # Shellcheck suppression is needed because gcc would think that $files is one file -- cgit v1.2.3