Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Martinez <joelmartinez@gmail.com>2017-10-19 21:03:15 +0300
committerGitHub <noreply@github.com>2017-10-19 21:03:15 +0300
commitfa6665913ddc320f8baba9ff91cac52d32442880 (patch)
treeb90b183e9f8caf144a2461f5ed5594342f1c0807 /Makefile
parenta2505d2a44e0500b4868c1d1a478573d5a7627ef (diff)
Removed `nuget` from `all` make target
We don't really need to invoke nuget during local development when all we need to do is compile and run our tests. The CI can simply explicitly call `nuget` to build the nuget package.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 46167dbd..34b5112b 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ CONFIGURATION = Release
BIN = bin/$(CONFIGURATION)
MDOC = $(BIN)/mdoc.exe
-all: build nuget
+all: build
build: $(MDOC)