We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 834a038 commit 2815f73Copy full SHA for 2815f73
extract-expose-version.sh
@@ -1,5 +1,8 @@
1
#!/bin/bash
2
3
+# Debugging output to check script execution
4
+echo "Script is being executed..."
5
+
6
# Extract Android version code
7
if [ "$EXPOSE_CODE" == 'true' ]; then
8
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
13
16
export ANDROID_VERSION_NAME
14
17
echo "ANDROID_VERSION_NAME extracted: $ANDROID_VERSION_NAME"
15
18
fi
19
20
+# Debugging output to indicate script completion
21
+echo "Script execution complete."
0 commit comments