Skip to content

Commit

Permalink
Ensure makefile cleans up properly
Browse files Browse the repository at this point in the history
  • Loading branch information
jwalnes committed Nov 20, 2013
1 parent 2ebdb1f commit 91be442
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions release/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ go-path/src/github.com/joewalnes/websocketd:
# Download Go source code
$(GO_DOWNLOAD):
mkdir -p $(dir $@)
curl $(GO_SRC_URL) > $@
curl --silent --fail --output $@ $(GO_SRC_URL)

go-download: $(GO_DOWNLOAD)
.PHONY: go-download
Expand All @@ -62,7 +62,7 @@ go-download: $(GO_DOWNLOAD)
$(GO_UNPACKED): $(GO_DOWNLOAD)
rm -f $(GO_UNPACKED)
mkdir -p $(GO_DIR)
tar xvzf $(GO_DOWNLOAD) -C $(GO_DIR)
tar xzf $(GO_DOWNLOAD) -C $(GO_DIR)
touch $(GO_UNPACKED)

go-unpack: $(GO_UNPACKED)
Expand Down Expand Up @@ -111,7 +111,7 @@ tag:

# Clean up
clean:
rm -rf out
rm -rf out $(PLATFORMS) go-path
.PHONY: clean


Expand Down

0 comments on commit 91be442

Please sign in to comment.