Skip to content

Commit

Permalink
Merge pull request #575 from aklenik/master
Browse files Browse the repository at this point in the history
Fix Docker build script for public NPM repo
  • Loading branch information
aklenik authored Sep 9, 2019
2 parents ec039e7 + bcafa85 commit 22a667b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const registryArg = args[1];
if (registryArg) {
dockerArgs = dockerArgs.concat(['--build-arg', `npm_registry=--registry=${registryArg}`, '.']);
} else {
dockerArgs = dockerArgs.concat(['--build-arg', 'npm_registry=""', '.']);
dockerArgs = dockerArgs.concat(['--build-arg', 'npm_registry=', '.']);
}

// the command is executed from the caliper-tests-integration dir
Expand Down

0 comments on commit 22a667b

Please sign in to comment.