File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ async function bumpAndroidVersion(buildGradlePath) {
142142
143143 const versionCodeToWrite = `versionCode ${ buildGradlePath . endsWith ( "kts" ) ? "= " : "" } ${ newVersionCodeString } `
144144 const newBuildGradleString = buildGradleString . replace ( new RegExp ( versionRegex ) , versionCodeToWrite )
145- console . log ( `Bumped Android versionCode: ${ oldVersionCodeString } -> ${ newVersionCodeString } ` )
145+ console . log ( `Bumped Android versionCode: ${ oldVersionCodeString } -> ${ newVersionCodeString } ( ${ buildGradlePath } ) ` )
146146 await fs . promises . writeFile ( buildGradlePath , newBuildGradleString )
147147}
148148
@@ -155,7 +155,7 @@ async function bumpAndroidVersion(buildGradlePath) {
155155async function bumpAndroidVersionName ( currentVersion , newVersionString , buildGradlePath ) {
156156 const buildGradleString = await fs . promises . readFile ( buildGradlePath , "utf8" )
157157 const newBuildGradleString = buildGradleString . replace ( new RegExp ( currentVersion . join ( "\\." ) ) , newVersionString )
158- console . log ( `Bumped Android versionName: ${ currentVersion . join ( "\\." ) } -> ${ newVersionString } ` )
158+ console . log ( `Bumped Android versionName: ${ currentVersion . join ( "\\." ) } -> ${ newVersionString } ( ${ buildGradlePath } ) ` )
159159 await fs . promises . writeFile ( buildGradlePath , newBuildGradleString )
160160}
161161
You can’t perform that action at this time.
0 commit comments