aboutsummaryrefslogtreecommitdiff
path: root/src/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/run.sh')
-rwxr-xr-xsrc/run.sh4
1 files changed, 2 insertions, 2 deletions
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