diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-02-20 09:27:45 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-02-20 09:27:45 -0500 |
commit | 0a813f280534b390faf9e1f2f2e8ec41af25374b (patch) | |
tree | 658d1db2ef19b3596699bc23bef239ba1c4f865e | |
parent | ac61f8b72603e9d08832250026e48093dd66aec4 (diff) | |
download | kutter-0a813f280534b390faf9e1f2f2e8ec41af25374b.tar.gz kutter-0a813f280534b390faf9e1f2f2e8ec41af25374b.tar.xz kutter-0a813f280534b390faf9e1f2f2e8ec41af25374b.zip |
scripts: Fix typo in install-centos.sh
Reported by @fishbone222.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rwxr-xr-x | scripts/install-centos.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install-centos.sh b/scripts/install-centos.sh index 1c3fd404..79ff35f2 100755 --- a/scripts/install-centos.sh +++ b/scripts/install-centos.sh @@ -70,7 +70,7 @@ KLIPPY_USER=$USER start_software() { report_status "Launching Klipper host software..." - sudo systemctl klipper restart + sudo systemctl restart klipper } # Helper functions |