Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve "Background Script - Update All Store Apps" #1061

Merged
merged 2 commits into from
Feb 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Background Scripts/Update All Store Apps/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Select one of the options below to run.

## OPTION 1: Find out how many apps are available to upgrade

1. ***Paste this line at the bottom of the script.***
1. ***Replace the last line by pasting this line at the bottom of the script.***

```javascript
new upgradeUtil().countUpgrades();
Expand Down Expand Up @@ -215,4 +215,4 @@ Copy and paste this URL from the output of the script into a browser tab to view

[^2]:**Product Docs: Continuous Integration/Continuous Delivery (CICD) API:** [https://docs.servicenow.com/csh?topicname=cicd-api.html&version=latest](https://docs.servicenow.com/csh?topicname=cicd-api.html&version=latest)

[^3]:**Product Docs: Create a Connection & Credential alias:** [https://docs.servicenow.com/csh?topicname=connection-alias.html&version=latest](https://docs.servicenow.com/csh?topicname=connection-alias.html&version=latest)
[^3]:**Product Docs: Create a Connection & Credential alias:** [https://docs.servicenow.com/csh?topicname=connection-alias.html&version=latest](https://docs.servicenow.com/csh?topicname=connection-alias.html&version=latest)
2 changes: 2 additions & 0 deletions Background Scripts/Update All Store Apps/update_all_apps.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ upgradeUtil.prototype = {
var versionStr = appsGr.getValue('version');
var assignedVersionStr = appsGr.getValue('assigned_version');
var latestVersionStr = appsGr.getValue('latest_version');
// Check if Latest Version field is populated, break the current loop if so as update cannot be checked
if (!latestVersionStr) break;
// Convert the strings to arrays of integers
var versionArr = versionStr.split('.').map(Number);
var assignedVersionArr = assignedVersionStr.split('.').map(Number);
Expand Down