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 be81c4c commit 03a91bfCopy full SHA for 03a91bf
1 file changed
.github/workflows/wiki.yml
@@ -82,7 +82,10 @@ jobs:
82
uses: actions/checkout@v4
83
84
- name: Install Markflow
85
- run: curl -sL https://raw.githubusercontent.com/darmie/markflow/main/install.sh | bash
+ run: |
86
+ curl -sL https://raw.githubusercontent.com/darmie/markflow/main/install.sh | bash
87
+ # Fix broken pipe: echo to closed grep pipe on Linux (grep -m1 exits early, SIGPIPE kills echo)
88
+ sed -i 's/echo "$content" | grep/{ echo "$content" || true; } | grep/g' "$HOME/.markflow/markflow"
89
90
- name: Build site
91
run: |
0 commit comments