Skip to content

Commit

Permalink
check commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
srikrishnak committed Feb 20, 2025
1 parent 9b6db70 commit d2344d3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/duckdb-ref-update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ update_makefile() {

# Replace the entire line correctly, preserving the original prefix
if [[ "$(uname)" == "Darwin" ]]; then
sed -i '' "s|^\\(.*${REF_VAR_NAME} *\\)=.*|\\1= ${LATEST_REF}|" Makefile
sed -i '' "s|^\\(.*${REF_VAR_NAME} *\\)=.*|\\1=${LATEST_REF}|" Makefile
else
sed -i "s|^\\(.*${REF_VAR_NAME} *\\)=.*|\\1= ${LATEST_REF}|" Makefile
sed -i "s|^\\(.*${REF_VAR_NAME} *\\)=.*|\\1=${LATEST_REF}|" Makefile
fi

return 0
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/duckdb-ref-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
fi
done
echo "$COMMIT_DETAILS"
echo "COMMIT_DETAILS=$COMMIT_DETAILS" >> "$GITHUB_ENV"
- name: Commit and Push Updates
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ DUCKDB_REPO=https://github.com/duckdb/duckdb.git
DUCKDB_REF=5f5512b827df6397afd31daedb4bbdee76520019

export DUCKDB_AWS_REF=b3050f35c6e99fa35465230493eeab14a78a0409
export DUCKDB_HTTPFS_REF=kittu
export DUCKDB_HTTPFS_REF=85ac4667bcb0d868199e156f8dd918b0278db7b9
export DUCKDB_SUBSTRAIT_REF=85ac4667bcb0d868199e156f8dd918b0278db7b9
export DUCKDB_ICEBERG_REF=3060b30309d82f1059c928de7280286fcf800545

Expand Down

0 comments on commit d2344d3

Please sign in to comment.