We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d038c0 commit 0112dafCopy full SHA for 0112daf
src/GWallet.Frontend.Console/Program.fs
@@ -522,8 +522,8 @@ let main argv =
522
let hello = sprintf "appData= %s ; userProfile= %s ; myDocs= %s ; personal= %s" appData userProfile myDocs personal
523
524
Console.WriteLine "hello"
525
- let helloFile = Path.Combine(System.IO.Directory.GetCurrentDirectory(), hello) |> FileInfo
526
- File.WriteAllText(helloFile.FullName, "hallo")
+ let helloFile = Path.Combine(System.IO.Directory.GetCurrentDirectory(), "hello.txt") |> FileInfo
+ File.WriteAllText(helloFile.FullName, hello)
527
Console.WriteLine "bye"
528
0
529
| _ ->
0 commit comments