Rebase on top of detsys-ts for abstracting over install.determinate.systems #74

Merged
grahamc merged 13 commits from detsys-ts into main 2024-04-11 15:58:56 +00:00
3 changed files with 8 additions and 0 deletions
Showing only changes of commit bb3c9e5344 - Show all commits

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 () => {