Skip to content

Commit f9dc688

Browse files
committed
Allow forcing of build.
1 parent 26133cd commit f9dc688

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/gutenberg/build-gutenberg.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ async function restorePackageJson() {
215215
}
216216

217217
// Run main function
218-
main().catch( ( error ) => {
218+
const force = process.argv.includes( '--force' );
219219
main( force ).catch( ( error ) => {
220220
console.error( '❌ Unexpected error:', error );
221221
process.exit( 1 );

0 commit comments

Comments
 (0)