diff options
author | Spacelord <spacelord09@users.noreply.github.com> | 2020-03-11 23:35:01 +0100 |
---|---|---|
committer | Spacelord <spacelord09@users.noreply.github.com> | 2020-03-11 23:35:01 +0100 |
commit | 9286bf43da5f6e87dfb20db50cf7c5ceaea925ba (patch) | |
tree | 4f425bab33f76b1cc431af3a646e51b1f75bfeda | |
parent | 9ec65119e11941d81a641f6387cdb542b4e8070e (diff) | |
download | midimonster-9286bf43da5f6e87dfb20db50cf7c5ceaea925ba.tar.gz midimonster-9286bf43da5f6e87dfb20db50cf7c5ceaea925ba.tar.bz2 midimonster-9286bf43da5f6e87dfb20db50cf7c5ceaea925ba.zip |
Installer: Fix name
-rwxr-xr-x | installer.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installer.sh b/installer.sh index b2ca958..843e6bc 100755 --- a/installer.sh +++ b/installer.sh @@ -210,13 +210,13 @@ clear # Check whether we have the privileges to install stuff if [ "$user" != "root" ]; then - printf "The installer requires root privileges to install the midimonster system-wide\n" + printf "The installer/updater requires root privileges to install the midimonster system-wide\n" exit 1 fi # Check if we can download the sources if [ "$(wget -q --spider http://github.com)" ]; then - printf "The installer requires internet connectivity to download the midimonster sources\n" + printf "The installer/updater requires internet connectivity to download the midimonster sources\n" exit 1 fi |