diff options
author | cbdev <cb@cbcdn.com> | 2019-12-19 22:18:12 +0100 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2019-12-19 22:18:12 +0100 |
commit | 5edccc6653eabe44079d82a7fbb96fd325b05177 (patch) | |
tree | a9448b2ff9f2e3acb61937e28458be3e4575f2b2 | |
parent | a25e815c4d5b4af5068ed3254be8e18c4c4fe7ab (diff) | |
download | midimonster-5edccc6653eabe44079d82a7fbb96fd325b05177.tar.gz midimonster-5edccc6653eabe44079d82a7fbb96fd325b05177.tar.bz2 midimonster-5edccc6653eabe44079d82a7fbb96fd325b05177.zip |
Fix installer symlink (Fixes #40)
-rwxr-xr-x | installer.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installer.sh b/installer.sh index 04207cb..c85b70e 100755 --- a/installer.sh +++ b/installer.sh @@ -151,7 +151,7 @@ UPDATER_SAVE () { # Saves file for the auto up mkdir -p "$updater_dir" wget https://raw.githubusercontent.com/cbdevnet/midimonster/master/installer.sh -O $updater_dir/updater.sh printf "Creating symlink to updater in /usr/bin/midimonster-updater\n" - ln -s "$updater_dir/updater.sh" "/usr/bin/midimonster-updater\n" + ln -s "$updater_dir/updater.sh" "/usr/bin/midimonster-updater" chmod +x "$updater_dir/updater.sh" printf "Exporting updater config to %s\n" "$updater_file" printf "VAR_PREFIX=%s\nVAR_PLUGINS=%s\nVAR_DEFAULT_CFG=%s\nVAR_DESTDIR=%s\nVAR_EXAMPLE_CFGS=%s\n" "$VAR_PREFIX" "$VAR_PLUGINS" "$VAR_DEFAULT_CFG" "$VAR_DESTDIR" "$VAR_EXAMPLE_CFGS" > $updater_file |