X-Git-Url: https://git.r.bdr.sh/rbdr/blog/blobdiff_plain/fffa731bd2af7c0eb20df4f19856f118c1980c6d..2e0000a6ebc1f58df6f3c1bf93ecb964a83ea938:/Makefile diff --git a/Makefile b/Makefile index f7b3130..2c1d4b3 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,8 @@ build: prepare cargo build --profile $(profile) --target $(target) release: rpm tar - rsync $(app_name)-$(target)-$(channel).tar.gz deploy@build.r.bdr.sh:/srv/http/build.r.bdr.sh/$(app_name) target/$(target)/$(profile)/$(app_name) + @$(eval filename := $(app_name)-$(target)-$(channel)) + rsync -avz $(filename).tar.gz deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name) $(architectures): ifneq ($(channel),) @@ -27,7 +28,8 @@ endif rpm: build tar: build - tar -czvf $(app_name)-$(target)-$(channel).tar.gz -C target/$(target)/$(profile)/ $(app_name) + @$(eval filename := $(app_name)-$(target)-$(channel)) + tar -czvf $(filename).tar.gz -C target/$(target)/$(profile)/ $(app_name) package: $(architectures)