Skip to content

Commit b742c18

Browse files
authored
Merge pull request #33 from sunnamed434/dev
Bump new version v0.3.2-alpha.7
2 parents 638db83 + 9f8fa9c commit b742c18

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

BitMono/BitMono.CLI/Program.cs

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff 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;

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
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) |
@@ -10,6 +11,10 @@
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

0 commit comments

Comments
 (0)