Skip to content

Commit

Permalink
fixing some more bugs. still hating myself
Browse files Browse the repository at this point in the history
  • Loading branch information
dopey committed Aug 15, 2018
1 parent 86d7b2c commit fa8414b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,10 @@ uninstall:
#########################################

debian:
$Q dpkg-buildpackage -b -rfakeroot -us -uc && mkdir -p $(RELEASE) && cp ../step_*.deb $(RELEASE)/
$Q mkdir -p $(RELEASE); \
OUTPUT=../step_*.deb; \
rm $$OUTPUT; \
dpkg-buildpackage -b -rfakeroot -us -uc && cp $$OUTPUT $(RELEASE)/

distclean: clean

Expand All @@ -181,7 +184,7 @@ binary-darwin:
define BUNDLE
$(q)BUNDLE_DIR=$(BINARY_OUTPUT)$(1)/bundle; \
stepName=step_$(2); \
mkdir -p $(RELEASE); \
mkdir -p $$BUNDLE_DIR $(RELEASE); \
TMP=$$(mktemp -d $$BUNDLE_DIR/tmp.XXXX); \
trap "rm -rf $$TMP" EXIT INT QUIT TERM; \
newdir=$$TMP/$$stepName; \
Expand Down

0 comments on commit fa8414b

Please sign in to comment.