File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -222,13 +222,21 @@ scriptArgs.forEach((arg) => {
222222} ) ;
223223
224224const specificTargets = Object . keys ( CONFIG ) . filter ( ( key ) =>
225- scriptArgs . includes ( `--${ key } ` )
225+ scriptArgs . includes ( `--${ key } ` ) ,
226226) ;
227227const targetsToBuild =
228228 specificTargets . length > 0 ? specificTargets : Object . keys ( CONFIG ) ;
229229
230230// --- Main Execution ---
231231
232+ console . log ( `
233+ ______ __ ______ _____ ____________ __
234+ ___ / / /____ ________________________ /___________________ __ / / /__ __ \\_ | / /
235+ __ /_/ /__ / / /__ __ \\ _ \\_ ___/_ /_ __ \\ __ \\__ __ \\ _ / / /__ /_/ /_ | / /
236+ _ __ / _ /_/ /__ /_/ / __/ / _ / / /_/ / /_/ /_ /_/ / / /_/ / _ ____/__ |/ /
237+ /_/ /_/ _\\__, / _ .___/\\___//_/ /_/ \\____/\\____/_ .___/ \\____/ /_/ _____/
238+ /____/ /_/ /_/ ` ) ;
239+
232240logger . header ( "Hyperloop Control Station Build" ) ;
233241
234242( async ( ) => {
@@ -256,7 +264,7 @@ logger.header("Hyperloop Control Station Build");
256264 logger . info ( "Finalizing Electron..." ) ;
257265 run (
258266 "pnpm --filter hyperloop-control-station install --frozen-lockfile" ,
259- __dirname
267+ __dirname ,
260268 ) ;
261269 }
262270
You can’t perform that action at this time.
0 commit comments