Sha256: 092880cc697265bb9d9cb337c3cd2196b654b8dcd9cbcf6baa3142b9103807e1
Contents?: true
Size: 376 Bytes
Versions: 104
Compression:
Stored size: 376 Bytes
Contents
#!/usr/bin/env bash set -x # Make sure there is `~/bin`-folder. [[ -d ~/bin ]] || mkdir -p ~/bin # download `rebar3` and make it executable if [[ ! -f ~/bin/rebar3 ]]; then wget -O ~/bin/rebar3 https://s3.amazonaws.com/rebar3/rebar3 chmod a+x ~/bin/rebar3 fi if [[ ! -f ~/bin/configlet ]]; then ./bin/fetch-configlet cp ./bin/configlet ~/bin/configlet fi
Version data entries
104 entries across 104 versions & 1 rubygems