File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ install_dxmt_runtime() {
147147 dxmt_url=$( printf ' %s\n' " $release_json " | jq -r ' .assets[].browser_download_url | select(test("builtin.*\\.tar\\.gz$"))' | head -n 1)
148148
149149 if [ -z " $dxmt_url " ]; then
150- echo " ERROR: Could not find a DXMT .tar.gz asset in latest release "
150+ echo " ERROR: Could not find a DXMT builtin release for version ${dxmt_tag} "
151151 exit 1
152152 fi
153153
@@ -159,7 +159,7 @@ install_dxmt_runtime() {
159159 }
160160 trap cleanup_dxmt_tmp RETURN
161161
162- echo " DXMT release: ${ dxmt_tag:- latest} "
162+ echo " DXMT release: $dxmt_tag "
163163 echo " Download URL : $dxmt_url "
164164
165165 if ! curl -fsSL --progress-bar -o " $archive_path " " $dxmt_url " ; then
@@ -214,13 +214,13 @@ download_wine_runtime() {
214214 wine_url=$( printf ' %s\n' " $release_json " | jq -r ' .assets[].browser_download_url | select(test("wine-staging.*osx64.*\\.tar\\.xz$"))' | head -n 1)
215215
216216 if [ -z " $wine_url " ]; then
217- echo " ERROR: Could not find a Wine .tar.xz asset in latest Gcenx release "
217+ echo " ERROR: Could not find any available Wine Staging release for version ${wine_tag} "
218218 exit 1
219219 fi
220220
221221 wine_archive=" $SCRIPT_DIR /$( basename " $wine_url " ) "
222222
223- echo " Wine release : ${ wine_tag:- latest} "
223+ echo " Wine release : $wine_tag "
224224 echo " Download URL : $wine_url "
225225
226226 if ! curl -fsSL --progress-bar -o " $wine_archive " " $wine_url " ; then
You can’t perform that action at this time.
0 commit comments