From 2287d0ecdd1c8c1138aeab791b70620ce2580e30 Mon Sep 17 00:00:00 2001 From: Benjamin DeMann Date: Mon, 25 Mar 2024 16:51:35 -0600 Subject: [PATCH] fixup --- src/compiler/file_uploader/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/compiler/file_uploader/index.ts b/src/compiler/file_uploader/index.ts index 7351f283c0..ce81ed87a7 100644 --- a/src/compiler/file_uploader/index.ts +++ b/src/compiler/file_uploader/index.ts @@ -2,7 +2,6 @@ import { getCanisterId } from '../../../dfx'; import { expandPaths } from './expand_paths'; import { uploadFile } from './upload_file'; import { onBeforeExit } from './on_before_exit'; -import { onExit } from './on_exit'; import { createActor } from './file_chunk_actor'; export type Src = string; @@ -26,5 +25,4 @@ export async function uploadFiles(canisterName: string, paths: [Src, Dest][]) { ); onBeforeExit(canisterId, expandedPaths); - onExit(canisterId, expandedPaths); }