From f8d34ee6a8de3fe64339a2d1cbce767cbee2e520 Mon Sep 17 00:00:00 2001 From: Spacelord Date: Fri, 6 Dec 2019 22:06:18 +0100 Subject: Fix git checkout error with git init --- installer.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/installer.sh b/installer.sh index 6d438a7..eab9f50 100644 --- a/installer.sh +++ b/installer.sh @@ -40,6 +40,7 @@ INSTALL-PREP () { git clone https://github.com/cbdevnet/midimonster.git "$tmp_path" # Gets Midimonster Iversion=(git describe --abbrev=0) # Get last tag(stable version) echo "Starting Git checkout to "$Iversion"" + git init $tmp_path git checkout $Iversion $tmp_path echo "" -- cgit v1.2.3 From a04b0d13d9248f89b9fe71f9d433ad44aac99116 Mon Sep 17 00:00:00 2001 From: Spacelord Date: Fri, 6 Dec 2019 22:21:44 +0100 Subject: Added update to README --- installer.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 installer.sh diff --git a/installer.sh b/installer.sh old mode 100644 new mode 100755 -- cgit v1.2.3 From 7e59d4832f819abe0bc981ebdac20f6e12a031e7 Mon Sep 17 00:00:00 2001 From: Spacelord Date: Fri, 6 Dec 2019 22:28:04 +0100 Subject: Added update to README --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 785d741..1f22657 100644 --- a/README.md +++ b/README.md @@ -182,6 +182,14 @@ for example ``` make jack.so ``` +#### Buiding with Installer + +For easy installation, the following steps are required: + +``` +wget https://raw.githubusercontent.com/cbdevnet/midimonster/master/installer.sh ./ +./installer.sh +``` #### Building for packaging or installation -- cgit v1.2.3 From 553633e0ab0191756bb5b8810a461168dfc66a3d Mon Sep 17 00:00:00 2001 From: Spacelord Date: Fri, 6 Dec 2019 22:37:40 +0100 Subject: added chmod +x to Installer README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1f22657..e925541 100644 --- a/README.md +++ b/README.md @@ -188,6 +188,7 @@ For easy installation, the following steps are required: ``` wget https://raw.githubusercontent.com/cbdevnet/midimonster/master/installer.sh ./ +chmod +x ./installer.sh ./installer.sh ``` -- cgit v1.2.3 From 34b8dd5c71615724408022db37dcf94576a12280 Mon Sep 17 00:00:00 2001 From: cbdev Date: Fri, 6 Dec 2019 22:51:56 +0100 Subject: Add link to installer section --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1f22657..9052034 100644 --- a/README.md +++ b/README.md @@ -184,7 +184,7 @@ make jack.so ``` #### Buiding with Installer -For easy installation, the following steps are required: +For easy installation on Linux, the [installer script](installer.sh) can be used: ``` wget https://raw.githubusercontent.com/cbdevnet/midimonster/master/installer.sh ./ -- cgit v1.2.3