There was an error while loading. Please reload this page.
1 parent 901fda7 commit 30576deCopy full SHA for 30576de
install.sh
@@ -0,0 +1,12 @@
1
+#!/bin/bash
2
+
3
+if [[ ! $(which wget) ]]
4
+then
5
+ [[ $(which apt-get) ]] && sudo apt-get install wget
6
+ [[ $(which yum) ]] && sudo yum install wget
7
+ [[ $(which zypper) ]] && sudo zypper install wget
8
+fi
9
10
+mkdir -p ./bin
11
+wget -P ./bin https://raw.githubusercontent.com/rubenmromero/git-matrix/master/git_matrix.sh
12
+chmod 755 ./bin/git_matrix.sh
0 commit comments