From 940ff2063cc2aabce7c5d949d864b3ff9f87a973 Mon Sep 17 00:00:00 2001 From: Andreas Kapp Lindquist Date: Tue, 30 Sep 2025 10:14:59 +0200 Subject: refactor(insertionsort.s): Renamed to insertion_sort.s --- src/run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/run.sh') diff --git a/src/run.sh b/src/run.sh index 0c5fa32..961defc 100755 --- a/src/run.sh +++ b/src/run.sh @@ -1,6 +1,6 @@ as test.s -o test.o -g as sorter.s -o sorter.o -g -as insertionsort.s -o insertionsort.o -g +as insertion_sort.s -o insertion_sort.o -g as utils.s -o utils.o -g -ld insertionsort.o sorter.o utils.o test.o -o test -g +ld insertion_sort.o sorter.o utils.o test.o -o test -g ./test -- cgit v1.2.3-70-g09d2