init: sudah ganti logo, hilangin setting, dan investigational use dialog
This commit is contained in:
13
preinstall.js
Normal file
13
preinstall.js
Normal file
@@ -0,0 +1,13 @@
|
||||
console.log('preinstall.js');
|
||||
|
||||
const { exec } = require('child_process');
|
||||
const log = (err, stdout, stderr) => console.log(stdout);
|
||||
|
||||
const GITHUB_TOKEN = process.env.GITHUB_TOKEN;
|
||||
if (GITHUB_TOKEN) {
|
||||
const command = `git config --global url."https://${GITHUB_TOKEN}:x-oauth-basic@github.com/".insteadOf ssh://git@github.com/`;
|
||||
console.log(command);
|
||||
exec(command, log);
|
||||
} else {
|
||||
console.log('No GITHUB_TOKEN found, skipping private repo customization');
|
||||
}
|
||||
Reference in New Issue
Block a user