Skip to content

Commit

Permalink
remove dlp from install script (#2580)
Browse files Browse the repository at this point in the history
  • Loading branch information
UnchartedBull committed Jan 17, 2022
1 parent fc08cb9 commit 7c1df2e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -713,14 +713,14 @@ elif [ ! -d $DIRECTORY ]; then
fi;

if [ $DIRECTORY != "-" ]; then
plugins=( 'OctoDash Companion' 'Display Layer Progress (mandatory)' 'Filament Manager' 'Spool Manager' 'Preheat Button' 'Enclosure' 'Print Time Genius' 'Ultimaker Format Package' 'PrusaSlicer Thumbnails' 'TPLinkSmartPlug' 'Tasmota' 'TasmotaMQTT', 'Ophom (Phillips HUE)')
checkbox_input "Which plugins should I install (you can also install them via the Octoprint UI)?" plugins selected_plugins
plugins=( 'OctoDash Companion' 'Display Layer Progress' 'Filament Manager' 'Spool Manager' 'Preheat Button' 'Enclosure' 'Print Time Genius' 'Ultimaker Format Package' 'PrusaSlicer Thumbnails' 'TPLinkSmartPlug' 'Tasmota' 'TasmotaMQTT', 'Ophom (Phillips HUE)')
checkbox_input "Which plugins should I install (you can also install them via the Octoprint UI later)?" plugins selected_plugins
echo "Installing Plugins..."

if [[ " ${selected_plugins[@]} " =~ "OctoDash Companion" ]]; then
"$DIRECTORY"/bin/pip install -q --disable-pip-version-check "https://github.com/jneilliii/OctoPrint-OctoDashCompanion/archive/master.zip"
fi;
if [[ " ${selected_plugins[@]} " =~ "Display Layer Progress (mandatory)" ]]; then
if [[ " ${selected_plugins[@]} " =~ "Display Layer Progress" ]]; then
"$DIRECTORY"/bin/pip install -q --disable-pip-version-check "https://github.com/OllisGit/OctoPrint-DisplayLayerProgress/releases/latest/download/master.zip"
fi;
if [[ " ${selected_plugins[@]} " =~ "Filament Manager" ]]; then
Expand Down

0 comments on commit 7c1df2e

Please sign in to comment.