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 step: wrap fallback clone in bash -c to avoid shlex.split error

run_shell_script splits on newlines and shlex.split each line independently,
so the backslash continuation was an unterminated escape character.

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

zzstoatzz c582b3fe c5122f19

+1 -2
+1 -2
prefect.yaml
··· 3 3 pull: 4 4 - prefect.deployments.steps.run_shell_script: 5 5 script: | 6 - git clone --depth 1 --branch main https://tangled.sh/zzstoatzz.io/my-prefect-server.git my-prefect-server \ 7 - || git clone --depth 1 --branch main https://github.com/zzstoatzz/my-prefect-server.git my-prefect-server 6 + 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" 8 7 - prefect.deployments.steps.set_working_directory: 9 8 directory: my-prefect-server 10 9