mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-08-23 22:16:48 +00:00
chore: make Prettier + fix spelling, update upgrade/switch instructions, prefer ale to syntastic
This commit is contained in:
@@ -21,21 +21,20 @@ if (/^win/i.test(os.platform())) {
|
||||
return;
|
||||
}
|
||||
|
||||
exec('curl -fsS https://webinstall.dev/webi | bash', function (
|
||||
err,
|
||||
stdout,
|
||||
stderr
|
||||
) {
|
||||
if (err) {
|
||||
console.error(err);
|
||||
exec(
|
||||
'curl -fsS https://webinstall.dev/webi | bash',
|
||||
function (err, stdout, stderr) {
|
||||
if (err) {
|
||||
console.error(err);
|
||||
}
|
||||
if (stdout) {
|
||||
console.info(stdout);
|
||||
}
|
||||
if (stderr) {
|
||||
console.error(stderr);
|
||||
}
|
||||
}
|
||||
if (stdout) {
|
||||
console.info(stdout);
|
||||
}
|
||||
if (stderr) {
|
||||
console.error(stderr);
|
||||
}
|
||||
});
|
||||
);
|
||||
/*
|
||||
.then(function () {
|
||||
// nada
|
||||
|
||||
Reference in New Issue
Block a user