We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 487c931 commit 56e1e71Copy full SHA for 56e1e71
Makefile
@@ -3,8 +3,13 @@ CHAPTER ?=
3
OFFLINE :=
4
# This is only for TAs to run base test, students do not know the token
5
TOKEN_SHA1 := $(shell echo -n '$(passwd)' | sha1sum | xargs | awk -F' ' '{ print $$1 }')
6
-CHECK_REPORTS := 1
7
-BASE := 2
+ifeq ($(TOKEN_SHA1), 1c22d32b04178593d7452f5eb5037bda00f73037)
+ BASE := 1
8
+ BASE_CHAR := b
9
+else
10
+ CHECK_REPORTS := 1
11
+ BASE := 2
12
+endif
13
14
# For students, report will be counted in to pass the CI
15
ifeq ($(CHAPTER), 3)
0 commit comments