File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -87,13 +87,13 @@ export default async function(github) {
87
87
} else {
88
88
const newVersions = await checkForMuslVersionsAndSecurityReleases ( github , versions ) ;
89
89
let updatedVersions = [ ] ;
90
- for ( let version of Object . keys ( newVersions ) ) {
91
- if ( newVersions [ version ] . muslBuildExists ) {
92
- const { stdout } = await exec ( `./update.sh ${ newVersions [ version ] . isSecurityRelease ? "-s " : "" } ${ version } ` ) ;
90
+ for ( const [ version , newVersion ] of Object . entries ( newVersions ) ) {
91
+ if ( newVersion . muslBuildExists ) {
92
+ const { stdout } = await exec ( `./update.sh ${ newVersion . isSecurityRelease ? "-s " : "" } ${ version } ` ) ;
93
93
console . log ( stdout ) ;
94
- updatedVersions . push ( newVersions [ version ] . fullVersion ) ;
94
+ updatedVersions . push ( newVersion . fullVersion ) ;
95
95
} else {
96
- console . log ( `There's no musl build for version ${ newVersions [ version ] . fullVersion } yet.` ) ;
96
+ console . log ( `There's no musl build for version ${ newVersion . fullVersion } yet.` ) ;
97
97
process . exit ( 0 ) ;
98
98
}
99
99
}
You can’t perform that action at this time.
0 commit comments