Skip to content

Commit

Permalink
clearer logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jag96 committed Dec 9, 2021
1 parent 6bbd4cd commit c1da6e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ if (!hasValue) {
console.log('Failed to get Bundle Versions from plist');
core.setOutput('BUNDLE_VERSIONS_MATCH', false);
} else if (bundleVersion.includes(shortBundleVersion)) {
console.log('Bundle Versions match');
console.log('Bundle Versions are compatible');
core.setOutput('BUNDLE_VERSIONS_MATCH', true);
} else {
console.log('Bundle Versions do not match');
console.log('Bundle Versions are not compatible');
core.setOutput('BUNDLE_VERSIONS_MATCH', false);
}
4 changes: 2 additions & 2 deletions .github/actions/checkBundleVersionStringMatch/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ if (!hasValue) {
console.log('Failed to get Bundle Versions from plist');
core.setOutput('BUNDLE_VERSIONS_MATCH', false);
} else if (bundleVersion.includes(shortBundleVersion)) {
console.log('Bundle Versions match');
console.log('Bundle Versions are compatible');
core.setOutput('BUNDLE_VERSIONS_MATCH', true);
} else {
console.log('Bundle Versions do not match');
console.log('Bundle Versions are not compatible');
core.setOutput('BUNDLE_VERSIONS_MATCH', false);
}

Expand Down

0 comments on commit c1da6e9

Please sign in to comment.