Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/clovershell-client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-03-19 21:55:02 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-03-19 21:55:02 +0300
commit92b21d8c46c84a853874639bb612c8cebd919894 (patch)
tree8e1eec7b4a99d94e393b8da31f22d982ae962ba8 /Program.cs
parent110a1ec7d882bd43454fd178156d4d6812813849 (diff)
Many fixes
Diffstat (limited to 'Program.cs')
-rw-r--r--Program.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Program.cs b/Program.cs
index 8baf1a1..72782a3 100644
--- a/Program.cs
+++ b/Program.cs
@@ -124,7 +124,7 @@ namespace com.clusterrr.clovershell
Console.Write("{0} / {1} ({2}%) ", Position, size > 0 ? size.ToString() : "???", size > 0 ? (Position * 100 / size).ToString() : "???");
};
result = nes.Execute("cat '" + source + "'", null, outFile, Console.OpenStandardError(), 1000, true);
- Console.Write("Done.");
+ Console.WriteLine("Done.");
break;
case "push":
if (args.Length < 3)
@@ -145,7 +145,7 @@ namespace com.clusterrr.clovershell
Console.Write("{0} / {1} ({2}%) ", Position, Length, Position * 100 / Length);
};
result = nes.Execute("cat > '" + target + "'", inFile, Console.OpenStandardOutput(), Console.OpenStandardError(), 1000, true);
- Console.Write("Done.");
+ Console.WriteLine("Done.");
break;
default:
ShowHelp();