Skip to content

Commit

Permalink
fix(release): ensure base commit is relevant to the current app
Browse files Browse the repository at this point in the history
  • Loading branch information
ygrishajev committed Sep 27, 2024
1 parent 0d68f66 commit eb392a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/docker/script/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ if [[ -z "$REPO" || -z "$TAG" || -z "$APP" ]]; then
exit 1
fi

commits=$(git log -n 10 --pretty=format:"%H %s")
commits=$(git log -n 10 --pretty=format:"%H %s" -- "$(git rev-parse --show-toplevel)"/apps/${APP})

while IFS= read -r commit; do
MESSAGE=$(echo $commit | cut -d' ' -f2-)
Expand Down

0 comments on commit eb392a4

Please sign in to comment.