diff --git a/scripts/cp_artifacts.sh b/scripts/cp_artifacts.sh index 1bb25c50..e939484d 100644 --- a/scripts/cp_artifacts.sh +++ b/scripts/cp_artifacts.sh @@ -5,10 +5,10 @@ VERSION=`cat package.json | jq -r '.version'` SRC=$1 DEST=$2 -cp "${SRC}/mattermost-${VERSION}-win-ia32.zip" "${DEST}/mattermost-desktop-${VERSION}-win-ia32.zip" -cp "${SRC}/mattermost-${VERSION}-win-x64.zip" "${DEST}/mattermost-desktop-${VERSION}-win-x64.zip" -cp "${SRC}/squirrel-windows/mattermost-setup-${VERSION}.exe" "${DEST}/mattermost-setup-${VERSION}-x64.exe" -cp "${SRC}"/squirrel-windows-ia32/*.exe "${DEST}/" +cp "${SRC}/mattermost-${VERSION}-win-ia32.zip" "${DEST}/mattermost-desktop-${VERSION}-win32.zip" +cp "${SRC}/mattermost-${VERSION}-win-x64.zip" "${DEST}/mattermost-desktop-${VERSION}-win64.zip" +cp "${SRC}/squirrel-windows/mattermost-setup-${VERSION}.exe" "${DEST}/mattermost-setup-${VERSION}-win64.exe" +cp "${SRC}/squirrel-windows-ia32/mattermost-setup-${VERSION}-ia32.exe" "${DEST}/mattermost-setup-${VERSION}-win32.exe" cp "${SRC}"/mattermost-desktop-*.zip "${DEST}/" cp "${SRC}"/*.tar.gz "${DEST}/" cp "${SRC}"/*.deb "${DEST}/" diff --git a/scripts/generate_release_markdown.sh b/scripts/generate_release_markdown.sh index 83de967a..500fe8f4 100755 --- a/scripts/generate_release_markdown.sh +++ b/scripts/generate_release_markdown.sh @@ -16,12 +16,12 @@ cat <<-MD The download links can be found below. #### Windows -$(print_link "${BASE_URL}/mattermost-setup-${VERSION}-ia32.exe") -$(print_link "${BASE_URL}/mattermost-setup-${VERSION}-x64.exe") +$(print_link "${BASE_URL}/mattermost-setup-${VERSION}-win32.exe") +$(print_link "${BASE_URL}/mattermost-setup-${VERSION}-win64.exe") #### Windows - zip files -$(print_link "${BASE_URL}/mattermost-desktop-${VERSION}-win-ia32.zip") -$(print_link "${BASE_URL}/mattermost-desktop-${VERSION}-win-x64.zip") +$(print_link "${BASE_URL}/mattermost-desktop-${VERSION}-win32.zip") +$(print_link "${BASE_URL}/mattermost-desktop-${VERSION}-win64.zip") #### Mac $(print_link "${BASE_URL}/mattermost-desktop-${VERSION}-mac.dmg")