Skip to content

Commit caeefd5

Browse files
author
Dimitar Kerezov
committed
LowerCase the parameter passed to $ dev-config-apply
It can cause problems in case-sensitive OS.
1 parent 037c2bc commit caeefd5

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)