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 f5d477f commit c12ddf0Copy full SHA for c12ddf0
installers/zsh.sh
@@ -0,0 +1,13 @@
1
+#!/bin/sh
2
+
3
+mkdir -p ~/icaro/cli
4
5
+if [ "$(find ~/icaro/cli | wc -l)" -eq 0 ]
6
+then
7
+ # get latest tag
8
+ curl https://api.github.com/repos/$org/$repo/releases/latest -s | jq .name -r
9
+ wget https://github.com/icarolang/lang/releases/latest/download/cli.jar
10
+ echo "alias icaro="java -jar ~/icaro/cli.jar"" >> .zshrc
11
+fi
12
13
+mkdir -p icaro/lang && cd icaro/lang || exit
0 commit comments