File tree 3 files changed +311
-76
lines changed
3 files changed +311
-76
lines changed Original file line number Diff line number Diff line change @@ -19,11 +19,11 @@ ifdef install-linters
19
19
endif
20
20
21
21
ifdef sandbox
22
- SANDBOX = "-- sandbox"
23
- endif
24
-
25
- ifdef sandbox-dir
26
- SANDBOX_DIR = "--sandbox-dir" "$(sandbox-dir)"
22
+ ifeq ($( sandbox), t)
23
+ SANDBOX = --sandbox
24
+ else
25
+ SANDBOX = --sandbox $(sandbox)
26
+ endif
27
27
endif
28
28
29
29
ifdef debug
49
49
# directory by that name exists, which can confuse Make.
50
50
51
51
% :
52
- @./makem.sh $(DEBUG ) $(VERBOSE ) $(SANDBOX ) $(SANDBOX_DIR ) $(INSTALL_DEPS ) $(INSTALL_LINTERS ) $(@ )
52
+ @./makem.sh $(DEBUG ) $(VERBOSE ) $(SANDBOX ) $(INSTALL_DEPS ) $(INSTALL_LINTERS ) $(@ )
53
+
54
+ .DEFAULT : init
55
+ init :
56
+ @./makem.sh $(DEBUG ) $(VERBOSE ) $(SANDBOX ) $(INSTALL_DEPS ) $(INSTALL_LINTERS )
Original file line number Diff line number Diff line change @@ -14,4 +14,4 @@ read local_ref local_sha remote_ref remote_sha
14
14
# cause remote code to be downloaded and executed (i.e. what would
15
15
# happen by installing packages). It can be done manually when needed.
16
16
17
- make test
17
+ make sandbox=.sandbox test
You can’t perform that action at this time.
0 commit comments