Skip to content

Commit e7606f3

Browse files
committed
Merge pull request #1326 from Icenium/kerezov/dev-config-apply-lower-case
LowerCase the parameter passed to $ dev-config-apply
2 parents 037c2bc + caeefd5 commit e7606f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/commands/dev/config-apply.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export class DevConfigApplyCommand implements ICommand {
99
public disableAnalytics = true;
1010

1111
public execute(args: string[]): IFuture<void> {
12-
return this.$config.apply(args[0]);
12+
return this.$config.apply(args[0].toLowerCase());
1313
}
1414
}
1515
$injector.registerCommand("dev-config-apply", DevConfigApplyCommand);

0 commit comments

Comments
 (0)