Fixup lint errors

This commit is contained in:
Graham Christensen 2024-04-11 11:49:08 -04:00
parent 35c3f12d0a
commit bb3c9e5344
3 changed files with 8 additions and 0 deletions

3
dist/index.js generated vendored
View file

@ -98344,8 +98344,11 @@ function action_input_bool(name) {
function main() {
const installer = new NixInstallerAction();
installer.idslib.onMain(async () => {
throw new Error("hello!");
/*
await installer.detectAndForceDockerShim();
await installer.install();
*/
});
installer.idslib.onPost(async () => {
await installer.cleanupDockerShim();

3
dist/main.js generated vendored
View file

@ -781,8 +781,11 @@ function action_input_bool(name) {
function main() {
const installer = new NixInstallerAction();
installer.idslib.onMain(async () => {
throw new Error("hello!");
/*
await installer.detectAndForceDockerShim();
await installer.install();
*/
});
installer.idslib.onPost(async () => {
await installer.cleanupDockerShim();

View file

@ -1026,8 +1026,10 @@ function main(): void {
installer.idslib.onMain(async () => {
throw new Error("hello!");
/*
await installer.detectAndForceDockerShim();
await installer.install();
*/
});
installer.idslib.onPost(async () => {