We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b987bb commit 470914cCopy full SHA for 470914c
machine-setup.sh
@@ -168,11 +168,21 @@ __install_to_HOME_bin_and_local_python_things() {
168
which virtualenvwrapper.sh || pip3 install virtualenvwrapper
169
}
170
171
+__install_to_HOME_bin_ngrok() {
172
+ if ! which ngrok > /dev/null
173
+ then cd "$HOME/Downloads"
174
+ curl https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip -o "./ngrok-stable-linux-amd64.zip"
175
+ unzip "./ngrok-stable-linux-amd64.zip"
176
+ mv "./ngrok" "$HOME/bin/ngrok"
177
+ fi
178
+}
179
+
180
install_to_HOME_bin() {
181
mkdir -p "$HOME/bin"
182
__install_to_HOME_bin_youtube_dl
183
__install_to_HOME_bin_clojure_things
184
__install_to_HOME_bin_and_local_python_things
185
+ __install_to_HOME_bin_ngrok
186
187
188
#
0 commit comments