The location of the config folder has changed. OctoPrint will try to migrate the configuration from its old location (~/.printerwebui, ...) to its new one (~/.octoprint, ...). For this to work the following conditions must be met: 1) the old config folder exists and is a directory 2) the new config folder does not exist at all. The migration functionality will be in the future.
7 lines
No EOL
131 B
Bash
7 lines
No EOL
131 B
Bash
#!/bin/sh
|
|
|
|
PYTHON=`which python`
|
|
DIR="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
cd $DIR
|
|
$PYTHON -m octoprint.server $@ |