mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 14:36:25 +00:00
ab6eb78dd9
This reverts commit dde2988289
.
8 lines
139 B
JavaScript
8 lines
139 B
JavaScript
import shell from 'shelljs';
|
|
|
|
shell.echo(`Verifying ...`);
|
|
|
|
const res = shell.exec(`npm whoami`);
|
|
if (res.code !== 0) {
|
|
shell.exit(2);
|
|
}
|