File tree Expand file tree Collapse file tree 2 files changed +14
-3
lines changed
Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -35,9 +35,15 @@ private static async Task Main(string[] args)
3535 var moduleFileName = await new CLIBitMonoModuleFileResolver ( args ) . ResolveAsync ( ) ;
3636 if ( string . IsNullOrWhiteSpace ( moduleFileName ) )
3737 {
38- Console . WriteLine ( "Please, specify file, drag-and-drop it in BitMono CLI" ) ;
39- Console . ReadLine ( ) ;
40- return ;
38+ Console . WriteLine ( "File not specified, please specify path to the file here: " ) ;
39+ moduleFileName = Console . ReadLine ( ) ;
40+
41+ if ( string . IsNullOrWhiteSpace ( moduleFileName ) )
42+ {
43+ Console . WriteLine ( "Please, specify file, drag-and-drop it in BitMono CLI" ) ;
44+ Console . ReadLine ( ) ;
45+ return ;
46+ }
4147 }
4248
4349 var domainBaseDirectory = AppDomain . CurrentDomain . BaseDirectory ;
Original file line number Diff line number Diff line change 11| Versions: |
22| - |
3+ | [ v0.3.2-alpha] ( #v032-alpha7 ) |
34| [ v0.3.1-alpha] ( #v031-alpha6 ) |
45| [ v0.3.0-alpha] ( #v030-alpha5 ) |
56| [ v0.2.2-alpha] ( #v022-alpha4 ) |
1011
1112---
1213
14+ ### v0.3.2-alpha.7:
15+ #### Fixed:
16+ * Specifying file
17+
1318### v0.3.1-alpha.6:
1419#### Changed:
1520* Guarantees loading libraries directly as bytes
You can’t perform that action at this time.
0 commit comments