fix web orchestrator build and sample update

This commit is contained in:
Brian Madison
2025-05-21 20:09:09 -05:00
parent 7e84908280
commit dcc2858873
3 changed files with 161 additions and 168 deletions

View File

@@ -60,7 +60,7 @@ async function main() {
}
// 2. Determine and validate asset folder root and build directory
const workspaceRoot = path.resolve(__dirname, "../../");
const workspaceRoot = path.resolve(__dirname, ".");
const assetFolderRootInput = config.asset_root;
let assetFolderRoot;
@@ -310,7 +310,7 @@ Processing '${subdirName}' directory into '${targetFile}'`);
Script finished. Output files are in ${buildDir}`);
console.log(
`To run this script: node ${path.relative(
path.resolve(__dirname, "../.."),
path.resolve(__dirname, "."),
__filename
)}`
);