File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ if (process.env["NATIVE_IMAGE_DIFF_SKIP_BINARY_DOWNLOAD_FOR_CI"]) { return; }
99// Get the version of the library;
1010const pkg = require ( path . resolve ( __dirname , ".." , "package.json" ) ) ;
1111const packageVersion = pkg . version ;
12- const binarySite = process . env . NID_BINARY_SITE || "https://github.com/Prior99/native-image-diff/releases/download" ;
13- const url = `${ binarySite } /${ packageVersion } /${ fileName . baseName } ` ;
12+ const baseUrl = process . env . NATIVE_IMAGE_DIFF_BINARY_URL || "https://github.com/Prior99/native-image-diff/releases/download" ;
13+ const url = `${ baseUrl } /${ packageVersion } /${ fileName . baseName } ` ;
1414
1515console . info ( `Downloading native-image-diff prebuilt binary from "${ url } ".` ) ;
1616
You can’t perform that action at this time.
0 commit comments