Skip to content

Commit 56e1e71

Browse files
authored
Update Makefile
1 parent 487c931 commit 56e1e71

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Makefile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,13 @@ CHAPTER ?=
33
OFFLINE :=
44
# This is only for TAs to run base test, students do not know the token
55
TOKEN_SHA1 := $(shell echo -n '$(passwd)' | sha1sum | xargs | awk -F' ' '{ print $$1 }')
6-
CHECK_REPORTS := 1
7-
BASE := 2
6+
ifeq ($(TOKEN_SHA1), 1c22d32b04178593d7452f5eb5037bda00f73037)
7+
BASE := 1
8+
BASE_CHAR := b
9+
else
10+
CHECK_REPORTS := 1
11+
BASE := 2
12+
endif
813

914
# For students, report will be counted in to pass the CI
1015
ifeq ($(CHAPTER), 3)

0 commit comments

Comments
 (0)