File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,13 @@ module.exports = {
190
190
// noVNC doesn't package the vnc_lite viewer that we need, so we have to
191
191
// fetch it separately.
192
192
new SaveRemoteFilePlugin ( {
193
- url : `https://raw.githubusercontent.com/novnc/noVNC/v${ execSync ( `yarn info --name-only @novnc/novnc | cut -d ':' -f 2 | tr -d '\n'` , { encoding : 'utf-8' } ) } /vnc_lite.html` ,
193
+ // HACK: Temporarily hardcoded the version number for @novnc /novnc, because
194
+ // the following, which works locally, does not work for some reason
195
+ // in CI. Any changes to package.json for this package will also
196
+ // need to be changed here.
197
+ // url: `https://raw.githubusercontent.com/novnc/noVNC/v${execSync(`yarn info --name-only @novnc /novnc | cut -d ':' -f 2 | tr -d '\n'`, {encoding: 'utf-8'}) }/vnc_lite.html`,
198
+ url : `https://raw.githubusercontent.com/novnc/noVNC/v1.2.0/vnc_lite.html` ,
199
+
194
200
filepath : 'vendor/noVNC/vnc_lite.html' ,
195
201
hash : false
196
202
} ) ,
You can’t perform that action at this time.
0 commit comments