Skip to content

Commit

Permalink
fixed delimiter character
Browse files Browse the repository at this point in the history
  • Loading branch information
joemarshall committed Aug 14, 2024
1 parent ba85956 commit 6458e0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/make_wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ jobs:
echo ARROW_WHEEL=${ARROW_WHEEL}>>$GITHUB_ENV
echo ARROW_VERSION=${ARROW_VERSION}>>$GITHUB_ENV
echo ARROW_SHA256=${ARROW_SHA256}>>$GITHUB_ENV
# use £ as separator for sed call below, because most of the normal ones are
# use ^ as separator for sed call below, because most of the normal ones are
# either special characters in bash or URL characters
sed "s£#RELEASE_URL#£${ARROW_RELEASE_URL}£g;s£#RELEASE_SHA256#£${ARROW_SHA256}£g;s£#RELEASE_VERSION#£${ARROW_VERSION}£g;"\
sed "s^#RELEASE_URL#^${ARROW_RELEASE_URL}^g;s^#RELEASE_SHA256#^${ARROW_SHA256}^g;s^#RELEASE_VERSION#^${ARROW_VERSION}^g;"\
< pyarrow/_meta_built_template.yaml > pyarrow/dist/${ARROW_WHEEL}.yaml
- name: Upload the build artifacts for build debugging purposes
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 6458e0b

Please sign in to comment.