Skip to content

Commit 8525a03

Browse files
committed
Make sure gradle.properties has a newline
1 parent 3f02cfc commit 8525a03

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,27 @@ jobs:
7272
run: |
7373
echo "Echo my echoes"
7474
echo "aws-sdk-kotlin"
75+
echo "" >> ./aws-sdk-kotlin/gradle.properties
7576
echo "aws.kotlin.native=false" >> ./aws-sdk-kotlin/gradle.properties
7677
echo "smithy-kotlin"
78+
echo "" >> ./smithy-kotlin/gradle.properties
7779
echo "aws.kotlin.native=false" >> ./smithy-kotlin/gradle.properties
7880
echo "aws-crt-kotlin"
81+
echo "" >> ./aws-crt-kotlin/gradle.properties
7982
echo "aws.kotlin.native=false" >> ./aws-crt-kotlin/gradle.properties
8083
84+
- name: Debug smithy-kotlin
85+
shell: bash
86+
working-directory: smithy-kotlin
87+
run: |
88+
echo "Debugging smithy-kotlin"
89+
echo "ls:"
90+
ls
91+
echo "gradle.properties"
92+
cat gradle.properties
93+
echo "git branch"
94+
git branch
95+
8196
- name: Debug aws-crt-kotlin
8297
shell: bash
8398
working-directory: aws-crt-kotlin

0 commit comments

Comments
 (0)