Skip to content

Commit

Permalink
release: remove quote from versionName
Browse files Browse the repository at this point in the history
  • Loading branch information
FireLord committed Jan 13, 2024
1 parent 378be48 commit e88d526
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release/deploy-telegram.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function send_to_tg() {

# Extract versionCode and versionName from build.gradle
versionCode=$(grep "versionCode" app/build.gradle | awk '{print $2}' | tr -d '\r')
versionName=$(grep "versionName" app/build.gradle | awk '{print $2}' | tr -d '\r')
versionName=$(grep "versionName" app/build.gradle | awk -F'"' '{print $2}' | tr -d '\r')

# Set the source and destination paths
source_file="${TG_FILE:?}"
Expand Down

0 comments on commit e88d526

Please sign in to comment.