We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8b5018 commit 0da5b95Copy full SHA for 0da5b95
scripts/update-cask.sh
@@ -44,15 +44,15 @@ done
44
exit 1
45
}
46
47
-# Download the Coder Desktop dmg
+# Download the CoderDesktop pkg
48
GH_RELEASE_FOLDER=$(mktemp -d)
49
50
gh release download "$VERSION" \
51
--repo coder/coder-desktop-macos \
52
--dir "$GH_RELEASE_FOLDER" \
53
- --pattern 'Coder.Desktop.dmg'
+ --pattern 'CoderDesktop.pkg'
54
55
-HASH=$(shasum -a 256 "$GH_RELEASE_FOLDER"/Coder.Desktop.dmg | awk '{print $1}' | tr -d '\n')
+HASH=$(shasum -a 256 "$GH_RELEASE_FOLDER"/CoderDesktop.pkg | awk '{print $1}' | tr -d '\n')
56
57
IS_PREVIEW=false
58
if [[ "$VERSION" == "preview" ]]; then
0 commit comments