neiam
/action-setup-beam
action-setup-beam
public · Issues · Pulls · Labels · Forks · Compare · Actions queued
⭐
Log in to mark this repository.
Use elixir executable to print the version, closes #70
8a644c6 · Wojtek Mach · 2021-08-19 10:28
Files changed
modified
src/install-elixir.ps1
+1
−1
@@ -16,4 +16,4 @@ $ProgressPreference="SilentlyContinue"
| 16 | 16 | Expand-Archive -DestinationPath "${DIR_FOR_BIN}" -Path "${FILE_OUTPUT}" |
| 17 | 17 | $ProgressPreference="Continue" |
| 18 | 18 | Write-Output "Installed Elixir version follows" |
| 19 | −& "$DIR_FOR_BIN/bin/iex" "-v" | Write-Output | |
| 19 | +& "$DIR_FOR_BIN/bin/elixir" "-v" | Write-Output |
modified
src/install-elixir.sh
+1
−1
@@ -13,4 +13,4 @@ wget -q -O "${FILE_OUTPUT}" "https://repo.hex.pm/builds/elixir/${FILE_INPUT}"
| 13 | 13 | mkdir -p "${DIR_FOR_BIN}" |
| 14 | 14 | unzip -q -d "${DIR_FOR_BIN}" "${FILE_OUTPUT}" |
| 15 | 15 | echo "Installed Elixir version follows" |
| 16 | −${DIR_FOR_BIN}/bin/iex -v | |
| 16 | +${DIR_FOR_BIN}/bin/elixir -v |
Parents: c988d89