Skip to content

Commit 6ef7ff6

Browse files
author
Philip Sampaio
committed
Apply formatter
1 parent 722c983 commit 6ef7ff6

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

bin/elixir.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,8 @@ for ($i = 0; $i -lt $Args.Count; $i++) {
220220
Default {
221221
if ($Arg -is [string]) {
222222
$AllOtherParams.Add($Arg)
223-
} else {
223+
}
224+
else {
224225
$AllOtherParams.Add([string]::Join(",", $Arg))
225226
}
226227
break

bin/elixirc.ps1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Usage: $ScriptName [elixir switches] [compiler switches] [.ex files]
1919
** Options can be passed to the Erlang runtime using ELIXIR_ERL_OPTIONS
2020
** Options can be passed to the Erlang compiler using ERL_COMPILER_OPTIONS
2121
"@
22-
exit
22+
exit
2323
}
2424

2525
$ScriptPath = Split-Path -Parent $PSCommandPath
@@ -33,7 +33,8 @@ for ($i = 0; $i -lt $Args.Count; $i++) {
3333

3434
if ($Arg -is [string]) {
3535
$NewArgs += $Arg
36-
} else {
36+
}
37+
else {
3738
$NewArgs += [string]::Join(",", $Arg)
3839
}
3940
}

bin/iex.ps1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The following options are exclusive to IEx:
1414
1515
It accepts all other options listed by "elixir --help".
1616
"@
17-
exit
17+
exit
1818
}
1919

2020
$ScriptPath = Split-Path -Parent $PSCommandPath
@@ -27,7 +27,8 @@ for ($i = 0; $i -lt $Args.Count; $i++) {
2727

2828
if ($Arg -is [string]) {
2929
$NewArgs += $Arg
30-
} else {
30+
}
31+
else {
3132
$NewArgs += [string]::Join(",", $Arg)
3233
}
3334
}

bin/mix.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ for ($i = 0; $i -lt $Args.Count; $i++) {
99

1010
if ($Arg -is [string]) {
1111
$NewArgs += $Arg
12-
} else {
12+
}
13+
else {
1314
$NewArgs += [string]::Join(",", $Arg)
1415
}
1516
}

0 commit comments

Comments
 (0)