Skip to content

Commit 6b4d50b

Browse files
committed
(maint) whitespace
1 parent 6130e91 commit 6b4d50b

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/chocolatey/infrastructure.app/runners/GenericRunner.cs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// Copyright © 2017 - 2018 Chocolatey Software, Inc
22
// Copyright © 2011 - 2017 RealDimensions Software, LLC
3-
//
3+
//
44
// Licensed under the Apache License, Version 2.0 (the "License");
55
// you may not use this file except in compliance with the License.
6-
//
6+
//
77
// You may obtain a copy of the License at
8-
//
8+
//
99
// http://www.apache.org/licenses/LICENSE-2.0
10-
//
10+
//
1111
// Unless required by applicable law or agreed to in writing, software
1212
// distributed under the License is distributed on an "AS IS" BASIS,
1313
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -52,7 +52,7 @@ private ICommand find_command(ChocolateyConfiguration config, Container containe
5252
//todo add a search among other location/extensions for the command
5353
if (!string.IsNullOrWhiteSpace(config.CommandName))
5454
{
55-
throw new Exception(@"Could not find a command registered that meets '{0}'.
55+
throw new Exception(@"Could not find a command registered that meets '{0}'.
5656
Try choco -? for command reference/help.".format_with(config.CommandName));
5757
}
5858

@@ -100,7 +100,7 @@ Custom unofficial builds are not allowed by default.
100100
{
101101
this.Log().Warn(config.RegularOutput ? ChocolateyLoggers.Important : ChocolateyLoggers.LogFileOnly, @"
102102
Chocolatey is not an official build (bypassed with --allow-unofficial).
103-
If you are seeing this message and it is not expected, your system may
103+
If you are seeing this message and it is not expected, your system may
104104
now be in a bad state. Only official builds are to be trusted.
105105
"
106106
);
@@ -280,7 +280,7 @@ public int count(ChocolateyConfiguration config, Container container, bool isCon
280280
public void warn_when_admin_needs_elevation(ChocolateyConfiguration config)
281281
{
282282
if (config.HelpRequested) return;
283-
283+
284284
// skip when commands will set or for background mode
285285
if (!config.Features.ShowNonElevatedWarnings) return;
286286

@@ -301,11 +301,11 @@ public void warn_when_admin_needs_elevation(ChocolateyConfiguration config)
301301
this.Log().Warn(ChocolateyLoggers.Important, @"
302302
You may experience errors - many functions/packages
303303
require admin rights. Only advanced users should run choco w/out an
304-
elevated shell. When you open the command shell, you should ensure
305-
that you do so with ""Run as Administrator"" selected. If you are
304+
elevated shell. When you open the command shell, you should ensure
305+
that you do so with ""Run as Administrator"" selected. If you are
306306
attempting to use Chocolatey in a non-administrator setting, you
307307
must select a different location other than the default install
308-
location. See
308+
location. See
309309
https://chocolatey.org/install#non-administrative-install for details.
310310
");
311311
var selection = InteractivePrompt.prompt_for_confirmation(@"

0 commit comments

Comments
 (0)