File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
.github/actions/cibuildgem Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -28213,7 +28213,8 @@ async function run(workingDirectory) {
2821328213 await downloadRubies(ccRubies.split(':'))
2821428214 setupRakeCompilerConfig(workingDirectory)
2821528215
28216- let config = fs.readFileSync(`${os.homedir()}/.rake-compiler`, { encoding: 'utf-8' })
28216+ let rbConfigPath = path.join(os.homedir(), ".rake-compiler", "config.yml")
28217+ let config = fs.readFileSync(rbConfigPath, { encoding: 'utf-8' })
2821728218 console.log(config)
2821828219}
2821928220
Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ async function run(workingDirectory) {
1212 await downloadRubies ( ccRubies . split ( ':' ) )
1313 setupRakeCompilerConfig ( workingDirectory )
1414
15- let config = fs . readFileSync ( `${ os . homedir ( ) } /.rake-compiler` , { encoding : 'utf-8' } )
15+ let rbConfigPath = path . join ( os . homedir ( ) , ".rake-compiler" , "config.yml" )
16+ let config = fs . readFileSync ( rbConfigPath , { encoding : 'utf-8' } )
1617 console . log ( config )
1718}
1819
You can’t perform that action at this time.
0 commit comments