8000 Remove .scalar folder by derrickstolee · Pull Request #251 · microsoft/scalar · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Remove .scalar folder #251

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Nov 26, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions Scalar.Common/ConsoleHelper.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using System.IO;
using System.Runtime.InteropServices;
using System.Threading;

namespace Scalar.Common
Expand All @@ -19,7 +18,6 @@ public static bool ShowStatusWhileRunning(
string message,
TextWriter output,
bool showSpinner,
string scalarLogEnlistmentRoot,
int initialDelayMs = 0)
{
Func<ActionResult> actionResultAction =
Expand All @@ -33,7 +31,6 @@ public static bool ShowStatusWhileRunning(
message,
output,
showSpinner,
scalarLogEnlistmentRoot,
initialDelayMs: initialDelayMs);

return result == ActionResult.Success;
Expand All @@ -44,7 +41,6 @@ public static ActionResult ShowStatusWhileRunning(
string message,
TextWriter output,
bool showSpinner,
string scalarLogEnlistmentRoot,
int initialDelayMs)
{
ActionResult result = ActionResult.Failure;
Expand Down Expand Up @@ -132,17 +128,12 @@ public static ActionResult ShowStatusWhileRunning(
output.Write("\r{0}...", message);
}

output.WriteLine("Failed" + (scalarLogEnlistmentRoot == null ? string.Empty : ". " + GetScalarLogMessage(scalarLogEnlistmentRoot)));
output.WriteLine("Failed");
break;
}
}

return result;
}

public static string GetScalarLogMessage(string enlistmentRoot)
{
return "Run 'scalar log " + enlistmentRoot + "' for more info.";
}
}
}
316 changes: 0 additions & 316 deletions Scalar.Common/DiskLayoutUpgrades/DiskLayoutUpgrade.cs

This file was deleted.

26 changes: 0 additions & 26 deletions Scalar.Common/DiskLayoutUpgrades/DiskLayoutVersion.cs

This file was deleted.

Loading
0