my prefect server setup prefect-metrics.waow.tech
python orchestration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix pull script: remove backslash continuation (shlex can't parse it)

prefect's run_shell_script uses shlex which raises ValueError on \<newline>
line continuations. wrap the git clone in bash -c "..." instead.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

zzstoatzz ac1fd0f3 5fcaba67

+1 -2
+1 -2
prefect.yaml
··· 4 4 - prefect.deployments.steps.run_shell_script: 5 5 script: | 6 6 rm -rf my-prefect-server 7 - git clone --depth 1 --branch main https://tangled.sh/zzstoatzz.io/my-prefect-server.git my-prefect-server \ 8 - || git clone --depth 1 --branch main https://github.com/zzstoatzz/my-prefect-server.git my-prefect-server 7 + bash -c "git clone --depth 1 --branch main https://tangled.sh/zzstoatzz.io/my-prefect-server.git my-prefect-server || git clone --depth 1 --branch main https://github.com/zzstoatzz/my-prefect-server.git my-prefect-server" 9 8 cd my-prefect-server && uv sync 10 9 - prefect.deployments.steps.set_working_directory: 11 10 directory: my-prefect-server