Skip to content

Commit

Permalink
(BUG): Fix deleted bazel-diff in verbose path (#24)
Browse files Browse the repository at this point in the history
bazel-diff gets cleaned up in verbose path
  • Loading branch information
pat-trunk-io authored Aug 5, 2024
1 parent f34103f commit 4da0c57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scripts/compute_impacted_targets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ if [[ -n ${VERBOSE-} ]]; then
echo "Merge Instance Depth= ${merge_instance_depth}"

git checkout -q "${MERGE_INSTANCE_BRANCH_HEAD_SHA}"
git clean -dfx -f --exclude=".trunk" --exclude="tests" --exclude="local-action" --exclude="user.bazelrc" .
git clean -dfx -f --exclude=".trunk" --exclude="tests" --exclude="local-action" --exclude="user.bazelrc" --exclude="bazel-diff.jar" .
git submodule update --recursive
git log -n "${merge_instance_depth}" --oneline | cat

Expand All @@ -112,7 +112,7 @@ if [[ -n ${VERBOSE-} ]]; then
echo "PR Depth= ${pr_depth}"

git checkout -q "${original_branch}"
git clean -dfx -f --exclude=".trunk" --exclude="tests" --exclude="local-action" --exclude="user.bazelrc" .
git clean -dfx -f --exclude=".trunk" --exclude="tests" --exclude="local-action" --exclude="user.bazelrc" --exclude="bazel-diff.jar" .
git submodule update --recursive
git log -n "${pr_depth}" --oneline | cat
fi
Expand Down

0 comments on commit 4da0c57

Please sign in to comment.