We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a52a442 commit 5630ad4Copy full SHA for 5630ad4
1 file changed
scripts/package/package-all.sh
@@ -68,7 +68,9 @@ function build_setup() {
68
exit 1
69
fi
70
71
- env AW_VERSION=$version "$innosetupdir/iscc.exe" scripts/package/activitywatch-setup.iss
+ # Windows installer version should not include 'v' prefix, see: https://github.com/microsoft/winget-pkgs/pull/17564
72
+ version_no_prefix="$(echo $version | sed -e 's/^v//')"
73
+ env AW_VERSION=$version_no_prefix "$innosetupdir/iscc.exe" scripts/package/activitywatch-setup.iss
74
mv dist/activitywatch-setup.exe dist/$filename
75
echo "Setup built!"
76
}
0 commit comments