File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -13637,7 +13637,7 @@ class se_Helper {
13637
13637
const execSync = external_child_process_.execSync;
13638
13638
console.log('Run number: ' + this.currentBuild.runNumber);
13639
13639
try {
13640
- const xmllint = execSync('sudo apt install libxml2-utils', {
13640
+ const xmllint = execSync('sudo apt-get update; sudo apt install libxml2-utils', {
13641
13641
shell: '/bin/bash'
13642
13642
});
13643
13643
console.log(xmllint.toString());
Original file line number Diff line number Diff line change @@ -47,9 +47,12 @@ export class Helper {
47
47
const execSync = child . execSync
48
48
console . log ( 'Run number: ' + this . currentBuild . runNumber )
49
49
try {
50
- const xmllint = execSync ( 'sudo apt install libxml2-utils' , {
51
- shell : '/bin/bash'
52
- } )
50
+ const xmllint = execSync (
51
+ 'sudo apt-get update; sudo apt install libxml2-utils' ,
52
+ {
53
+ shell : '/bin/bash'
54
+ }
55
+ )
53
56
54
57
console . log ( xmllint . toString ( ) )
55
58
} catch ( err ) {
You can’t perform that action at this time.
0 commit comments