We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 727cccf commit 2b04af3Copy full SHA for 2b04af3
scripts/01-update-octoprint
@@ -6,9 +6,11 @@ export LC_ALL=C
6
source /common.sh
7
install_cleanup_trap
8
9
+BUNDLED="OctoPrint-FileCheck OctoPrint-FirmwareCheck OctoPrint-PiSupport"
10
+
11
if [ -n "$OCTOPRINT_VERSION" ]; then
12
# fetch from GitHub since PyPI might not yet be synced through right after a fresh release
- sudo -u pi /home/pi/oprint/bin/pip install -U https://github.com/OctoPrint/OctoPrint/archive/refs/tags/$OCTOPRINT_VERSION.zip
13
+ sudo -u pi /home/pi/oprint/bin/pip install -U https://github.com/OctoPrint/OctoPrint/archive/refs/tags/$OCTOPRINT_VERSION.zip $BUNDLED
14
else
- sudo -u pi /home/pi/oprint/bin/pip install -U OctoPrint
15
+ sudo -u pi /home/pi/oprint/bin/pip install -U OctoPrint $BUNDLED
16
fi
0 commit comments