From fd2269a0eb25d3a0bf63af06c47493089d0cf5bc Mon Sep 17 00:00:00 2001 From: oblomov-dev <102328295+oblomov-dev@users.noreply.github.com> Date: Thu, 3 Oct 2024 23:56:51 +0200 Subject: [PATCH] Update run.js (#1484) --- ci/app2bsp/run.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/app2bsp/run.js b/ci/app2bsp/run.js index d2ecf722..e483b531 100644 --- a/ci/app2bsp/run.js +++ b/ci/app2bsp/run.js @@ -2,7 +2,7 @@ const fs = require('fs'); const path = require('path'); const sourceDir = './app/webapp'; -const staticDir = './static'; +const staticDir = './ci/app2bsp/static'; const targetDir = './output'; const prefix = 'z2ui5.wapa.'; @@ -86,4 +86,4 @@ fs.mkdir(targetDir, { recursive: true }, (err) => { // Starte den Kopiervorgang für den statischen Ordner ohne Umbenennung copyFilesRecursively(staticDir, targetDir, staticDir, false); -}); \ No newline at end of file +});