From 5a51beb3d4ff7b9ecca6e1263948d5dc2c4ee78f Mon Sep 17 00:00:00 2001 From: CartBlanche Date: Tue, 2 Jul 2024 18:45:40 +0100 Subject: [PATCH] Ignore use of Stripping when checking if provision.json exists. --- .../Meadow.CLI/Commands/Current/Provision/ProvisionCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/v2/Meadow.CLI/Commands/Current/Provision/ProvisionCommand.cs b/Source/v2/Meadow.CLI/Commands/Current/Provision/ProvisionCommand.cs index 14781c20..5ecac53a 100644 --- a/Source/v2/Meadow.CLI/Commands/Current/Provision/ProvisionCommand.cs +++ b/Source/v2/Meadow.CLI/Commands/Current/Provision/ProvisionCommand.cs @@ -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))