Skip to content

Commit

Permalink
fix build script
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Sverdlov <michaelsv@jfrog.com>
  • Loading branch information
sverdlov93 committed Sep 21, 2023
1 parent 63090a6 commit f5f947f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/npm/v2-jf/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function validateNpmVersion() {
}

function downloadWithProxy(myUrl) {
const proxyparts = new URL(process.env.https_proxy);
const proxyParts = new URL(process.env.https_proxy);
const myUrlParts = new URL(myUrl);

request({
Expand Down
2 changes: 1 addition & 1 deletion build/npm/v2/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function validateNpmVersion() {
}

function downloadWithProxy(myUrl) {
const proxyparts = new URL(process.env.https_proxy);
const proxyParts = new URL(process.env.https_proxy);
const myUrlParts = new URL(myUrl);

request({
Expand Down

0 comments on commit f5f947f

Please sign in to comment.