Skip to content

Commit

Permalink
fix: issue conversion space
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Jan 12, 2023
1 parent b767d25 commit cc8ee03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bin/android.ts
Expand Up @@ -9,7 +9,7 @@ export function readVersion(contents) {
export function writeVersion(contents, version) {
const newContent = contents.replace(
regexAndroid,
`private\sfinal\sString\sPLUGIN_VERSION\s=\s"${version}";`
`private final String PLUGIN_VERSION = "${version}";`
);
return newContent;
}
2 changes: 1 addition & 1 deletion src/bin/ios.ts
Expand Up @@ -9,7 +9,7 @@ export function readVersion(contents) {
export function writeVersion(contents, version) {
const newContent = contents.replace(
regexIos,
`private\slet\sPLUGIN_VERSION:\sString\s=\s"${version}"`
`private let PLUGIN_VERSION: String = "${version}"`
);
return newContent;
}

0 comments on commit cc8ee03

Please sign in to comment.