Skip to content

Commit f313629

Browse files
committed
WIP
1 parent 06cdb61 commit f313629

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/actions/cibuildgem/dist/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

.github/actions/cibuildgem/src/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)