Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
  • Loading branch information
almirsarajcic committed Sep 17, 2024
1 parent ce00a52 commit ed0a988
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions priv/static/Linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,18 +80,15 @@ function install() {
;;
"mise")
curl https://mise.run | sh
echo "eval \"\$(mise activate $current_shell)\"" >>$config_file
eval "$(mise activate $current_shell)"
mise activate $current_shell --shims
;;
"Erlang")
sudo apt-get update
sudo apt-get -y install build-essential autoconf m4 libncurses5-dev libwxgtk3.0-gtk3-dev libwxgtk-webview3.0-gtk3-dev libgl1-mesa-dev libglu1-mesa-dev libpng-dev libssh-dev unixodbc-dev xsltproc fop libxml2-utils libncurses-dev openjdk-11-jdk
echo 'KERL_CONFIGURE_OPTIONS="--without-javac"' >>~/.kerlrc
mise install erlang@$erlang_version
mise use -g erlang@$erlang_version
;;
"Elixir")
mise install elixir@$elixir_version
mise use -g elixir@$elixir_version
;;
"Phoenix")
Expand All @@ -101,7 +98,6 @@ function install() {
"PostgreSQL")
sudo apt-get update
sudo apt-get -y install linux-headers-generic build-essential libssl-dev libreadline-dev zlib1g-dev libcurl4-openssl-dev uuid-dev icu-devtools
mise install postgres@$postgres_version
mise use -g postgres@$postgres_version
postgres_bin_path="$HOME/.local/share/mise/installs/postgres/$postgres_version/bin"
export PATH="$postgres_bin_path:$PATH"
Expand Down
6 changes: 1 addition & 5 deletions priv/static/macOS.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,17 +80,14 @@ function install() {
;;
"mise")
curl https://mise.run | sh
echo 'eval "\$(mise activate '$current_shell')"' >>$config_file
eval "$(mise activate $current_shell)"
mise activate $current_shell --shims
;;
"Erlang")
brew install autoconf [email protected] wxwidgets libxslt fop
echo 'KERL_CONFIGURE_OPTIONS="--without-javac" --with-ssl=$(brew --prefix [email protected])"' >>~/.kerlrc
mise install erlang@$erlang_version
mise use -g erlang@$erlang_version
;;
"Elixir")
mise install elixir@$elixir_version
mise use -g elixir@$elixir_version
;;
"Phoenix")
Expand All @@ -99,7 +96,6 @@ function install() {
;;
"PostgreSQL")
brew install gcc readline zlib curl ossp-uuid
mise install postgres@$postgres_version
mise use -g postgres@$postgres_version
postgres_bin_path="$HOME/.local/share/mise/installs/postgres/$postgres_version/bin"
export PATH="$postgres_bin_path:$PATH"
Expand Down

0 comments on commit ed0a988

Please sign in to comment.