Skip to content

Commit

Permalink
fix python build (#4963)
Browse files Browse the repository at this point in the history
  • Loading branch information
alpetric authored Dec 20, 2024
1 parent 82031a9 commit cfdd7d1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion python-client/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@ user friendly experience. We use \

echo "" >> windmill-api/README.md.tmp

tail -r windmill-api/README.md | tail -n +14 | tail -r >> windmill-api/README.md.tmp
if [[ "$OSTYPE" == "darwin"* ]]; then
tail -r windmill-api/README.md | tail -n +14 | tail -r >> windmill-api/README.md.tmp
else
head -n -13 windmill-api/README.md >> windmill-api/README.md.tmp
fi

mv windmill-api/README.md.tmp windmill-api/README.md

cd windmill-api && poetry build
Expand Down

0 comments on commit cfdd7d1

Please sign in to comment.