mirror of
https://github.com/step-security/harden-runner.git
synced 2026-06-08 16:47:05 +00:00
11 lines
223 B
TypeScript
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);
|
|
})();
|