Skip to content
This repository was archived by the owner on Feb 2, 2021. It is now read-only.

Commit ba7efda

Browse files
FatmeFatme
Fatme
authored and
Fatme
committed
Merge pull request #323 from telerik/fatme/cherrypick-more-commits-ns1.0.1
Cherrypick more commits for ns 1.0.1 release
2 parents 089848b + d34e39c commit ba7efda

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

services/commands-service.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ import os = require("os");
88
var options: any = require("../options");
99

1010
class CommandArgumentsValidationHelper {
11-
constructor(public isValid: boolean, public remainingArguments: string[]) { }
11+
constructor(public isValid: boolean, _remainingArguments: string[]) {
12+
this.remainingArguments = _remainingArguments.slice();
13+
}
14+
15+
public remainingArguments: string[];
1216
}
1317

1418
export class CommandsService implements ICommandsService {

0 commit comments

Comments
 (0)