Skip to content

Commit

Permalink
feat: add subversion
Browse files Browse the repository at this point in the history
  • Loading branch information
fangzhengjin committed Sep 20, 2023
1 parent 94a69bf commit d0bae25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/subversion/update.task.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = async ({
const response = await fetch('https://packages.debian.org/bookworm/subversion');
const html = await response.text();
const $ = cheerio.load(html);
const latestVersion = $($('.vcurrent')[0]).text().get();
const latestVersion = $($('.vcurrent')[0]).text().trim();

let dockerfile = runtime.readDockerfile(package);
const currentVersion = runtime.getVersion('SUBVERSION_VERSION', dockerfile);
Expand Down

0 comments on commit d0bae25

Please sign in to comment.