Update run.js (#1484)

This commit is contained in:
oblomov-dev 2024-10-03 23:56:51 +02:00 committed by GitHub
parent d7defdfa56
commit fd2269a0eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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);
});
});