Skip to content

Commit

Permalink
fix: remove toLowerCase() call on argValue from docker-build
Browse files Browse the repository at this point in the history
  • Loading branch information
Полонский Роман Вадимович authored and Полонский Роман Вадимович committed Feb 1, 2019
1 parent 3469d99 commit 6ee433c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/docker-build/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const commandLineArguments = process.argv.slice(3);
commandLineArguments.forEach(arg => {
let [argName, argValue] = arg.split('=');
argName = argName.toLowerCase().trim();
argValue = argValue ? argValue.trim().toLowerCase() : '';
argValue = argValue ? argValue.trim() : '';
switch (argName) {
case 'version':
imageVersion = argValue;
Expand Down

0 comments on commit 6ee433c

Please sign in to comment.