diff options
-rw-r--r-- | README.md | 9 | ||||
-rwxr-xr-x[-rw-r--r--] | installer.sh | 1 |
2 files changed, 10 insertions, 0 deletions
@@ -182,6 +182,15 @@ for example ``` make jack.so ``` +#### Buiding with Installer + +For easy installation on Linux, the [installer script](installer.sh) can be used: + +``` +wget https://raw.githubusercontent.com/cbdevnet/midimonster/master/installer.sh ./ +chmod +x ./installer.sh +./installer.sh +``` #### Building for packaging or installation diff --git a/installer.sh b/installer.sh index 6d438a7..eab9f50 100644..100755 --- 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 "" |