Skip to content

Commit 5e1cf34

Browse files
committed
fix a small bug in the update-prebuild script
1 parent 1b1d640 commit 5e1cf34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/update-prebuild.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ shell.exec('git clean -xdf');
2626
// this can't use shell.js because we cleared node_modules
2727
await exec('npm i');
2828

29-
shell.exec('rm public/assets/*');
29+
shell.exec('rm -r public/assets/*');
3030
shell.exec('rm -rf public/v*');
3131

3232
shell.exec('ALL_VERSIONS=true ember build -prod');

0 commit comments

Comments
 (0)