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: everything in bash -c, run_shell_script doesn't use shell

prefect's run_shell_script executes each line as a subprocess binary call,
so shell builtins (cd, &&, etc) don't work at the top level. wrap all
commands in a single bash -c "..." invocation.

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

zzstoatzz 00abe8d9 ac1fd0f3

+1 -3
+1 -3
prefect.yaml
··· 3 3 pull: 4 4 - prefect.deployments.steps.run_shell_script: 5 5 script: | 6 - rm -rf 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" 8 - cd my-prefect-server && uv sync 6 + bash -c "rm -rf my-prefect-server && (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) && cd my-prefect-server && uv sync" 9 7 - prefect.deployments.steps.set_working_directory: 10 8 directory: my-prefect-server 11 9