harden-runner/src/index.ts
2021-11-25 16:12:05 -08:00

11 lines
223 B
TypeScript

import { printInfo } from "./common";
(async () => {
if (process.platform !== "linux") {
console.log("Only runs on linux");
return;
}
var web_url = "https://app.stepsecurity.io";
printInfo(web_url);
})();