Skip to content

Commit 43e4ef8

Browse files
committed
- ubuntu-ci - bugfix - Fix out-of-date apt-list when installing graphicsmagick.
1 parent 68627bf commit 43e4ef8

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

.ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ import moduleFs from "fs";
441441
"type": "git",
442442
"url": "https://github.com/jslint-org/jslint.git"
443443
},
444-
"version": "2024.12.1"
444+
"version": "2025.3.1"
445445
}, undefined, 4)
446446
}
447447
].map(async function ({

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
- jslint - add new warning requiring paren around plus-separated concatenations.
88
- jslint - try to improve parser to be able to parse jquery.js without stopping.
99

10-
# v2024.12.1-beta
10+
# v2025.3.1-beta
11+
- ubuntu-ci - bugfix - Fix out-of-date apt-list when installing graphicsmagick.
1112
- jslint - Cleanup ci-shell-function shRollupFetch().
1213
- jslint - Update ci-shell-function shDirHttplinkValidate() with pragma <\!!--novalidate--\>.
1314
- ci - Upgrade nodejs used in ci to v22.

jslint.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ let jslint_charset_ascii = (
163163
+ "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
164164
+ "`abcdefghijklmnopqrstuvwxyz{|}~\u007f"
165165
);
166-
let jslint_edition = "v2024.12.1-beta";
166+
let jslint_edition = "v2025.3.1-beta";
167167
let jslint_export; // The jslint object to be exported.
168168
let jslint_fudge = 1; // Fudge starting line and starting
169169
// ... column to 1.

jslint_ci.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@ shCiArtifactUpload() {(set -e
293293
# install graphicsmagick
294294
if (! command -v gm >/dev/null)
295295
then
296+
sudo apt-get update
296297
sudo apt-get install -y graphicsmagick
297298
fi
298299
# mkdir .artifact/

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
"shCiArtifactUpload": 1,
3636
"shCiPublishNpm": 1,
3737
"type": "module",
38-
"version": "2024.12.1-beta"
38+
"version": "2025.3.1-beta"
3939
}

0 commit comments

Comments
 (0)