Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
-Force shouldn't trump -WhatIf (#423)
  • Loading branch information
edyoung authored and alerickson committed Jan 10, 2019
1 parent da45cd6 commit 8436d50
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Expand Up @@ -182,7 +182,7 @@ protected override string BootstrapNuGet
}

public bool ShouldProcessPackageUninstall(string packageName, string version) {
return Force || ShouldProcess(FormatMessageString(Constants.Messages.TargetPackageVersion, packageName, version), FormatMessageString(Constants.Messages.ActionUninstallPackage)).Result;
return ShouldProcess(FormatMessageString(Constants.Messages.TargetPackageVersion, packageName, version), FormatMessageString(Constants.Messages.ActionUninstallPackage)).Result;
}
}
}
Empty file added test.ps1
Empty file.

0 comments on commit 8436d50

Please sign in to comment.