File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -220,7 +220,8 @@ for ($i = 0; $i -lt $Args.Count; $i++) {
220
220
Default {
221
221
if ($Arg -is [string ]) {
222
222
$AllOtherParams.Add ($Arg )
223
- } else {
223
+ }
224
+ else {
224
225
$AllOtherParams.Add ([string ]::Join(" ," , $Arg ))
225
226
}
226
227
break
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Usage: $ScriptName [elixir switches] [compiler switches] [.ex files]
19
19
** Options can be passed to the Erlang runtime using ELIXIR_ERL_OPTIONS
20
20
** Options can be passed to the Erlang compiler using ERL_COMPILER_OPTIONS
21
21
"@
22
- exit
22
+ exit
23
23
}
24
24
25
25
$ScriptPath = Split-Path - Parent $PSCommandPath
@@ -33,7 +33,8 @@ for ($i = 0; $i -lt $Args.Count; $i++) {
33
33
34
34
if ($Arg -is [string ]) {
35
35
$NewArgs += $Arg
36
- } else {
36
+ }
37
+ else {
37
38
$NewArgs += [string ]::Join(" ," , $Arg )
38
39
}
39
40
}
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ The following options are exclusive to IEx:
14
14
15
15
It accepts all other options listed by "elixir --help".
16
16
"@
17
- exit
17
+ exit
18
18
}
19
19
20
20
$ScriptPath = Split-Path - Parent $PSCommandPath
@@ -27,7 +27,8 @@ for ($i = 0; $i -lt $Args.Count; $i++) {
27
27
28
28
if ($Arg -is [string ]) {
29
29
$NewArgs += $Arg
30
- } else {
30
+ }
31
+ else {
31
32
$NewArgs += [string ]::Join(" ," , $Arg )
32
33
}
33
34
}
Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ for ($i = 0; $i -lt $Args.Count; $i++) {
9
9
10
10
if ($Arg -is [string ]) {
11
11
$NewArgs += $Arg
12
- } else {
12
+ }
13
+ else {
13
14
$NewArgs += [string ]::Join(" ," , $Arg )
14
15
}
15
16
}
You can’t perform that action at this time.
0 commit comments