From 41b61ec1a068ebfdfdc5ca6bd067900cc939dbcb Mon Sep 17 00:00:00 2001 From: Clint J Edwards Date: Thu, 10 Sep 2026 21:03:57 -0600 Subject: [PATCH] [release] Update cargo deb settings A while back we consolidated the pushpin repo debian deployment process into this main repo. The problem with this is that I forgot to update some of the directory references and it caused a failure when trying to cut a new release from this repo. This should fix those directory settings to reflect the new locations. --- Cargo.toml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fefbd0c0..2ab00256 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,12 +25,11 @@ assets = [ { source = "dist/usr/share/doc/pushpin/README.md.gz", dest = "usr/share/doc/pushpin/", mode = "644" }, { source = "dist/usr/share/doc/pushpin/NEWS.Debian.gz", dest = "usr/share/doc/pushpin/", mode = "644" }, { source = "dist/usr/share/doc/pushpin/changelog.Debian.gz", dest = "usr/share/doc/pushpin/", mode = "644" }, - { source = "source/tools/*.py", dest = "usr/share/doc/pushpin/examples/tools/", mode = "644" }, - { source = "source/tools/*.php", dest = "usr/share/doc/pushpin/examples/tools/", mode = "644" }, - { source = "source/tools/*.js", dest = "usr/share/doc/pushpin/examples/tools/", mode = "644" }, - { source = "source/tools/*.sh", dest = "usr/share/doc/pushpin/examples/tools/", mode = "755" }, - { source = "source/tools/zhttp/*.py", dest = "usr/share/doc/pushpin/examples/tools/zhttp/", mode = "644" }, - { source = "source/tools/echo/*", dest = "usr/share/doc/pushpin/examples/tools/echo/", mode = "644" }, + { source = "tools/*.py", dest = "usr/share/doc/pushpin/examples/tools/", mode = "644" }, + { source = "tools/*.php", dest = "usr/share/doc/pushpin/examples/tools/", mode = "644" }, + { source = "tools/*.js", dest = "usr/share/doc/pushpin/examples/tools/", mode = "644" }, + { source = "tools/*.sh", dest = "usr/share/doc/pushpin/examples/tools/", mode = "755" }, + { source = "tools/zhttp/*.py", dest = "usr/share/doc/pushpin/examples/tools/zhttp/", mode = "644" }, ] preserve-symlinks = true maintainer-scripts = "packaging/debian/debian"