From 369b13fbb20b707a85424621c35603a9481e3e6a Mon Sep 17 00:00:00 2001 From: Martin Frost Date: Sun, 9 Apr 2023 00:48:10 +0200 Subject: [PATCH] Make cargo deb use output directly from build --- Cargo.toml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 332ef5b..3271267 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,15 +30,15 @@ priority = "optional" extended-description = """\ A set of git subcommands for including co-authors to your git commits.""" assets = [ - ["ci-release/bin/git-mob", "usr/bin/", "755"], - ["ci-release/bin/git-solo", "usr/bin/", "755"], - ["ci-release/bin/git-add-coauthor", "usr/bin/", "755"], - ["ci-release/bin/git-edit-coauthor", "usr/bin/", "755"], - ["ci-release/bin/git-delete-coauthor", "usr/bin/", "755"], - ["ci-release/man/git-mob.1.gz", "usr/share/man/man1/", "644"], - ["ci-release/man/git-solo.1.gz", "usr/share/man/man1/", "644"], - ["ci-release/man/git-add-coauthor.1.gz", "usr/share/man/man1/", "644"], - ["ci-release/man/git-edit-coauthor.1.gz", "usr/share/man/man1/", "644"], - ["ci-release/man/git-delete-coauthor.1.gz", "usr/share/man/man1/", "644"], + ["target/release/git-mob", "usr/bin/", "755"], + ["target/release/git-solo", "usr/bin/", "755"], + ["target/release/git-add-coauthor", "usr/bin/", "755"], + ["target/release/git-edit-coauthor", "usr/bin/", "755"], + ["target/release/git-delete-coauthor", "usr/bin/", "755"], + ["target/release/git-mob.1", "usr/share/man/man1/", "644"], + ["target/release/git-solo.1", "usr/share/man/man1/", "644"], + ["target/release/git-add-coauthor.1", "usr/share/man/man1/", "644"], + ["target/release/git-edit-coauthor.1", "usr/share/man/man1/", "644"], + ["target/release/git-delete-coauthor.1", "usr/share/man/man1/", "644"], ["README.md", "usr/share/doc/git-mob/README", "644"], ]