From 59648eac3d648ac370d8362ae2f7d72eaf6fc8b7 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Thu, 8 Apr 2021 17:12:00 +0200 Subject: [PATCH] avoid extra separate upload to pbs repo Signed-off-by: Thomas Lamprecht --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index da04c15d..44bff68f 100644 --- a/Makefile +++ b/Makefile @@ -166,6 +166,7 @@ install: $(COMPILED_BINS) upload: ${SERVER_DEB} ${CLIENT_DEB} ${RESTORE_DEB} ${DOC_DEB} # check if working directory is clean git diff --exit-code --stat && git diff --exit-code --stat --staged - tar cf - ${SERVER_DEB} ${SERVER_DBG_DEB} ${DOC_DEB} | ssh -X repoman@repo.proxmox.com upload --product pbs --dist buster - tar cf - ${CLIENT_DEB} ${CLIENT_DBG_DEB} | ssh -X repoman@repo.proxmox.com upload --product "pbs,pve,pmg" --dist buster + tar cf - ${SERVER_DEB} ${SERVER_DBG_DEB} ${DOC_DEB} ${CLIENT_DEB} ${CLIENT_DBG_DEB} | \ + ssh -X repoman@repo.proxmox.com upload --product pbs --dist buster + tar cf - ${CLIENT_DEB} ${CLIENT_DBG_DEB} | ssh -X repoman@repo.proxmox.com upload --product "pve,pmg" --dist buster tar cf - ${RESTORE_DEB} ${RESTORE_DBG_DEB} | ssh -X repoman@repo.proxmox.com upload --product "pve" --dist buster