Skip to content

Commit

Permalink
Ignore use of Stripping when checking if provision.json exists.
Browse files Browse the repository at this point in the history
  • Loading branch information
CartBlanche committed Jul 2, 2024
1 parent bbee4ef commit 5a51beb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ protected override async ValueTask ExecuteCommand()
refreshDeviceList = AnsiConsole.Confirm(Strings.Provision.RefreshDeviceList);
} while (!refreshDeviceList);

string path = AppTools.ValidateAndSanitizeAppPath(System.IO.Path.Combine(Path, "provision.json"));
string path = System.IO.Path.Combine(Path, "provision.json");

if (!string.IsNullOrWhiteSpace(path)
&& !File.Exists(path))
Expand Down

0 comments on commit 5a51beb

Please sign in to comment.