diff --git a/src/model_gen/download-openscad.ts b/src/model_gen/download-openscad.ts index c10bad3..daa5e80 100644 --- a/src/model_gen/download-openscad.ts +++ b/src/model_gen/download-openscad.ts @@ -130,9 +130,10 @@ async function main() { // Some CI systems (like Vercel) don't have FUSE, so extract the appimage. console.log('Extracting AppImage...') console.log(execFileSync(destination, ['--appimage-extract'], { + encoding: 'utf-8', cwd: targetDir, })) - console.log(readdirSync(targetDir)) + console.log(readdirSync(join(targetDir, 'squashfs-root'))) } }