File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3414,7 +3414,7 @@ function installLinuxDepends(version) {
34143414 if ( version === '8' ) {
34153415 yield exec . exec ( 'sudo add-apt-repository ppa:openjdk-r/ppa' ) ;
34163416 yield exec . exec ( `sudo apt-get update` ) ;
3417- yield exec . exec ( 'sudo apt-get install -qq -y --no-install-recommends openjdk-7 -jdk' ) ;
3417+ yield exec . exec ( 'sudo apt-get install -qq -y --no-install-recommends openjdk-8 -jdk' ) ;
34183418 }
34193419 else {
34203420 yield exec . exec ( `sudo apt-get update` ) ;
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ async function installLinuxDepends(version: string): Promise<void> {
127127 await exec . exec ( 'sudo add-apt-repository ppa:openjdk-r/ppa' )
128128 await exec . exec ( `sudo apt-get update` )
129129 await exec . exec (
130- 'sudo apt-get install -qq -y --no-install-recommends openjdk-7 -jdk'
130+ 'sudo apt-get install -qq -y --no-install-recommends openjdk-8 -jdk'
131131 )
132132 } else {
133133 await exec . exec ( `sudo apt-get update` )
You can’t perform that action at this time.
0 commit comments