Skip to content

Commit

Permalink
fix(comments): added better separation of output
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Farrell committed Feb 11, 2022
1 parent 1cf86b6 commit 488a1bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import { setPackageVersion } from "./set-package-version";
(async function invoke() {
const versionText = process.argv[2];
const appName = setPackageVersion(versionText).name;

console.log("-------------------------------------------------------");
await setAndroidMarketingVersion(versionText);
console.log("-------------------------------------------------------");
await setAppleMarketingVersion(versionText, appName);

console.log("-------------------------------------------------------");
})();
1 change: 0 additions & 1 deletion src/set-android-marketing-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ export async function setAndroidMarketingVersion(versionText) {
`Will set Android version name to ${chalk.bold.underline(versionText)}`
)
);
console.log("-------------------------------------------------------");

const buildGradle = fs.readFileSync(buildGradlePath, "utf8");
const newBuildGradle = buildGradle.replace(
Expand Down

0 comments on commit 488a1bd

Please sign in to comment.