Fixup lint errors
This commit is contained in:
parent
35c3f12d0a
commit
bb3c9e5344
3
dist/index.js
generated
vendored
3
dist/index.js
generated
vendored
|
@ -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
3
dist/main.js
generated
vendored
|
@ -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();
|
||||
|
|
|
@ -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 () => {
|
||||
|
|
Loading…
Reference in a new issue