-
Rhys Arkins authored
This reverts commit dde29882.
Rhys Arkins authoredThis reverts commit dde29882.
verify.mjs 139 B
import shell from 'shelljs';
shell.echo(`Verifying ...`);
const res = shell.exec(`npm whoami`);
if (res.code !== 0) {
shell.exit(2);
}