TUN-4066: Remove unnecessary chmod during package publish to CF_PKG_HOSTS

This commit is contained in:
Nuno Diegues 2021-03-11 11:43:34 +00:00
parent a7344435a5
commit d6e867d4d1
1 changed files with 0 additions and 1 deletions

View File

@ -116,7 +116,6 @@ define publish_package
for HOST in $(CF_PKG_HOSTS); do \
ssh-keyscan -t rsa $$HOST >> ~/.ssh/known_hosts; \
scp -4 cloudflared*.$(1) cfsync@$$HOST:/state/cf-pkg/staging/$(2)/$(TARGET_PUBLIC_REPO)/cloudflared/; \
ssh cfsync@$$HOST 'chmod g+w /state/cf-pkg/staging/$(2)/$(TARGET_PUBLIC_REPO)/cloudflared/*.$(1)'; \
done
endef