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 e7037c8 commit 283b471Copy full SHA for 283b471
Makefile
@@ -13,7 +13,8 @@ $(BUILD_DIR)/release/$(NAME): $(SOURCES)
13
14
.PHONY: install
15
install: $(BUILD_DIR)/release/$(NAME)
16
- @install "$(BUILD_DIR)/release/$(NAME)" "$(BIN_DIR)"
+ @install -d $(BIN_DIR)
17
+ @install "$(BUILD_DIR)/release/$(NAME)" $(BIN_DIR)
18
19
.PHONY: uninstall
20
uninstall:
install.sh
@@ -2,4 +2,4 @@
2
3
git clone https://github.com/ikhvorost/swift-doc-coverage.git
4
cd swift-doc-coverage
5
-sudo make install
+make install
0 commit comments