Skip to content

Commit

Permalink
Use elixir executable to print the version, closes #70
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtekmach committed Aug 19, 2021
1 parent c988d89 commit 8a644c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/install-elixir.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ $ProgressPreference="SilentlyContinue"
Expand-Archive -DestinationPath "${DIR_FOR_BIN}" -Path "${FILE_OUTPUT}"
$ProgressPreference="Continue"
Write-Output "Installed Elixir version follows"
& "$DIR_FOR_BIN/bin/iex" "-v" | Write-Output
& "$DIR_FOR_BIN/bin/elixir" "-v" | Write-Output
2 changes: 1 addition & 1 deletion src/install-elixir.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ wget -q -O "${FILE_OUTPUT}" "https://repo.hex.pm/builds/elixir/${FILE_INPUT}"
mkdir -p "${DIR_FOR_BIN}"
unzip -q -d "${DIR_FOR_BIN}" "${FILE_OUTPUT}"
echo "Installed Elixir version follows"
${DIR_FOR_BIN}/bin/iex -v
${DIR_FOR_BIN}/bin/elixir -v

0 comments on commit 8a644c6

Please sign in to comment.