Skip to content

Commit d79c1a0

Browse files
fix error causing issues (#27)
1 parent f8648d6 commit d79c1a0

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/scripts/parse_commit_info.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,13 @@ ConstructCommitMessage() {
4646
ParseCommitInfo() {
4747
cd "$SOURCE_REPO_DIRECTORY" || { echo "Changing directory failed"; exit 1; }
4848

49-
# Diagnostic output
50-
echo "Current directory: $(pwd)"
51-
ls -al
52-
5349
COMMIT_MESSAGE=$(FetchCommitMessage)
5450
COMMIT_HASH=$(FetchCommitHash)
5551
REPO_URL=$(FetchRepoURL)
5652
REPO_NAME=$(ParseRepoName)
5753
PR_NUMBER=$(ExtractPRNumber)
5854
final_commit_message=$(ConstructCommitMessage "$REPO_NAME" "$COMMIT_MESSAGE" "$PR_NUMBER" "$COMMIT_HASH")
59-
echo "Final constructed message: $final_commit_message"
55+
echo "$final_commit_message"
6056
}
6157

6258
ORB_TEST_ENV="bats-core"

0 commit comments

Comments
 (0)