fix: enable mainsail remoteMode if its already installed before moonraker

This commit is contained in:
th33xitus
2021-01-30 18:19:49 +01:00
parent 82227f8d0b
commit dc6fea8c3b
2 changed files with 11 additions and 3 deletions

View File

@@ -139,6 +139,10 @@ moonraker_setup(){
create_single_moonraker_instance
else
create_multi_moonraker_instance
### step 6.5: enable mainsails remoteMode if its already installed
if [ -d $MAINSAIL_DIR ]; then
enable_mainsail_remotemode
fi
fi
}