From 99650eb1b42cea7d0b62ccf26ce555f6443f4af6 Mon Sep 17 00:00:00 2001 From: Jake McGinty Date: Sun, 9 May 2021 20:05:29 +0900 Subject: [PATCH] meta(release): fix excluded crates --- release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.sh b/release.sh index 987e021..52c6fd1 100755 --- a/release.sh +++ b/release.sh @@ -17,7 +17,7 @@ done [ "$#" -eq 1 ] || die "usage: ./release.sh [patch|major|minor|rc]" git diff --quiet || die 'ERROR: git repo is dirty.' -cargo release "$1" --no-confirm --exclude "hostsfile,publicip" +cargo release "$1" --no-confirm --exclude "hostsfile" --exclude "publicip" # re-stage the manpage commit and the cargo-release commit git reset --soft @~1