Skip to content

Commit f25fa14

Browse files
committed
fix: scoring scripts
1 parent 4549a5d commit f25fa14

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Lab6/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ all:
55

66
run: run1 run2
77

8-
run1: all
8+
run1:
99
@cat 1.txt | ./chal
1010

11-
run2: all
11+
run2:
1212
@cat 2.txt | ./chal
1313

1414
clean:

Lab6/validate.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,9 @@ cd $tmp_dir
1818
rm -rf *
1919
cp $solution_path/Makefile .
2020
cp $solution_path/ans .
21-
cp $solution_path/*.c .
2221
cp $solution_path/chal .
2322
cp $solution_path/*.txt .
2423

25-
make
2624
make run$1 > out
2725
result=$(diff --strip-trailing-cr ans out)
2826
if [[ -n $result ]]; then

0 commit comments

Comments
 (0)