[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-deployment] branch master updated: use distro, not codename
From: |
Admin |
Subject: |
[taler-deployment] branch master updated: use distro, not codename |
Date: |
Wed, 26 Feb 2025 16:05:05 +0100 |
This is an automated email from the git hooks/post-receive script.
grothoff pushed a commit to branch master
in repository taler-deployment.
The following commit(s) were added to refs/heads/master by this push:
new 7d22341 use distro, not codename
7d22341 is described below
commit 7d22341520101bbd65341e30c75db7e70f4a5942
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Wed Feb 26 16:04:57 2025 +0100
use distro, not codename
---
packaging/ng/taler-pkg | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/packaging/ng/taler-pkg b/packaging/ng/taler-pkg
index 4f5ac6c..832b5ab 100755
--- a/packaging/ng/taler-pkg
+++ b/packaging/ng/taler-pkg
@@ -170,12 +170,13 @@ def publish(cfg):
if len(debs) == 0:
print("nothing to upload")
return
- subprocess.run(["scp", "--", *debs,
f"taler-packaging@{host}:{codename}/"], check=True)
+ subprocess.run(["ssh", f"taler-packaging@{host}", f"rm {distro}/*.deb"],
check=True)
+ subprocess.run(["scp", "--", *debs, f"taler-packaging@{host}:{distro}/"],
check=True)
# FIXME: This fails when packages of the same version are already present.
# That's a problem since builds are not bit-reproducible.
- subprocess.run(["ssh", f"taler-packaging@{host}",
f"./include-{codename}.sh"], check=True)
- subprocess.run(["ssh", f"taler-packaging@{host}",
f"./export-{codename}.sh"], check=True)
- subprocess.run(["ssh", f"taler-packaging@{host}",
f"./show-{codename}.sh"], check=True)
+ subprocess.run(["ssh", f"taler-packaging@{host}",
f"./include-{distro}.sh"], check=True)
+ subprocess.run(["ssh", f"taler-packaging@{host}",
f"./export-{distro}.sh"], check=True)
+ subprocess.run(["ssh", f"taler-packaging@{host}", f"./show-{distro}.sh"],
check=True)
def main():
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-deployment] branch master updated: use distro, not codename,
Admin <=