File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change
1
+ # !make
2
+ MAKEFLAGS += --silent
3
+
4
+ # This allows us to accept extra arguments (by doing nothing when we get a job that doesn't match,
5
+ # rather than throwing an error).
6
+ % :
7
+ @ :
8
+
9
+ # $(MAKECMDGOALS) is the list of "targets" spelled out on the command line
10
+ stagel :
11
+ git clone --quiet https://github.com/mongodb/snooty-scripts.git build_scripts
12
+ @ cd build_scripts && npm install
13
+ @ source ~ /.config/.snootyenv && node build_scripts/app.js $(filter-out $@ ,$(MAKECMDGOALS ) )
14
+ @ rm -rf build_scripts
15
+
16
+ commit :
17
+ @ :
18
+
19
+ local :
20
+ @ :
21
+
1
22
GIT_BRANCH =$(shell git rev-parse --abbrev-ref HEAD)
2
23
USER =$(shell whoami)
3
24
STAGING_URL ="https://docs-mongodborg-staging.corp.mongodb.com"
You can’t perform that action at this time.
0 commit comments