Skip to content

Commit 52d4291

Browse files
author
Philip Sampaio
committed
Turn the scripts executables
1 parent 6ef7ff6 commit 52d4291

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

bin/elixir.ps1

100644100755
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env pwsh
2+
13
$MinPowerShellVersion = [semver]::new(7, 2, 0)
24

35
if ($MinPowerShellVersion.CompareTo($PSVersionTable.PSVersion) -eq 1) {

bin/elixirc.ps1

100644100755
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env pwsh
2+
13
$ScriptName = Split-Path -Leaf $PSCommandPath
24

35
if (($Args.Count -eq 0) -or ($Args[0] -in @("-h", "--help"))) {

bin/iex.ps1

100644100755
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env pwsh
2+
13
$ScriptName = Split-Path -Leaf $PSCommandPath
24

35
if ($Args[0] -in @("-h", "--help")) {

bin/mix.ps1

100644100755
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env pwsh
2+
13
$ScriptPath = Split-Path -Parent $PSCommandPath
24
$Command = Join-Path -Path $ScriptPath -ChildPath "elixir.ps1"
35
$MixCommand = Join-Path -Path $ScriptPath -ChildPath "mix"

0 commit comments

Comments
 (0)