#!/usr/bin/env nodeimport {execShellCommand} from'./shell.js';
import {join} from'path';
const scriptDir = newURL(import.meta.url).pathname;
// Runs the bash script and forward the arguments, exiting with the same codeexecShellCommand(join(scriptDir, '../lint.sh'), process.argv.slice(2));