File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -88,14 +88,16 @@ async function fork_app(cwd = repo_dir) {
8888
8989 . then ( ( ) => {
9090
91- if ( config . verbose ) console . log ( "[+] Environment avaialble for use ." )
91+ if ( config . verbose ) console . log ( "[+] Environment ready for runtime ." )
9292
9393 } )
9494
9595 . catch ( console . warn ) ;
9696
9797 console . log ( "[.] Initialising child process." ) ;
9898
99+ if ( config . verbose ) console . log ( `Executing: ${ config . start . trim ( ) } ` ) ;
100+
99101 return app = fork ( cwd , config . start . split ( / + / g) ) . addListener ( "spawn" , ( ) => console . log ( "[+] Process spawned successfully." ) ) ;
100102
101103}
@@ -187,7 +189,7 @@ async function reset_app() {
187189
188190 }
189191
190- if ( config . verbose ) console . log ( "[.] Removing remaining files ." ) ;
192+ if ( config . verbose ) console . log ( "[.] Clearing remnants ." ) ;
191193
192194 await remove_dir ( )
193195
You can’t perform that action at this time.
0 commit comments