aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4d414c8..61dc355 100644
--- a/Makefile
+++ b/Makefile
@@ -26,7 +26,7 @@ endif
deb: build
@$(eval filename := $(app_name)-$(target)-$(channel))
- cargo deb --profile $(profile) --target $(target)
+ @export $$(cat .env | xargs) > /dev/null 2>&1 && cargo deb --profile $(profile) --target $(target)
mv target/$(target)/debian/*.deb $(filename).deb
sha256sum $(filename).deb > $(filename).deb.sha256
rsync -avz $(filename).deb deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
@@ -34,7 +34,7 @@ deb: build
rpm: build
@$(eval filename := $(app_name)-$(target)-$(channel))
- cargo generate-rpm --profile $(profile) --target $(target)
+ @export $$(cat .env | xargs) > /dev/null 2>&1 && cargo generate-rpm --profile $(profile) --target $(target)
mv target/$(target)/generate-rpm/*.rpm $(filename).rpm
sha256sum $(filename).rpm > $(filename).rpm.sha256
rsync -avz $(filename).rpm deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)