From 8cdaa4ee14a494a9f39fed37388fd740f30f70b3 Mon Sep 17 00:00:00 2001 From: Andreas Bomholtz Date: Tue, 9 May 2023 18:02:47 +0200 Subject: [PATCH] Fix issue with files not being saved after remote update. This fixes #188 --- src/wapp.serve.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wapp.serve.ts b/src/wapp.serve.ts index 7eb4f61..873fdc9 100644 --- a/src/wapp.serve.ts +++ b/src/wapp.serve.ts @@ -14,6 +14,7 @@ export default class ServeWapp extends UpdateWapp { if (localFile) { await localFile.update(); + this.application.save(); await this.installation.restart(); tui.showMessage(`${filePath} was updated`);