Skip to content

Commit 2815f73

Browse files
committed
more debug
1 parent 834a038 commit 2815f73

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

extract-expose-version.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#!/bin/bash
22

3+
# Debugging output to check script execution
4+
echo "Script is being executed..."
5+
36
# Extract Android version code
47
if [ "$EXPOSE_CODE" == 'true' ]; then
58
ANDROID_VERSION_CODE=$(grep "versionCode" app/build.gradle.kts | sed "s/.*versionCode\\s*=\\s*\\([0-9]*\\).*/\\1/")
@@ -13,3 +16,6 @@ if [ "$EXPOSE_NAME" == 'true' ]; then
1316
export ANDROID_VERSION_NAME
1417
echo "ANDROID_VERSION_NAME extracted: $ANDROID_VERSION_NAME"
1518
fi
19+
20+
# Debugging output to indicate script completion
21+
echo "Script execution complete."

0 commit comments

Comments
 (0)