Skip to content

Commit

Permalink
Fix firmware download message when firmware isn't found and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianstevens committed Sep 10, 2024
1 parent 96e66bf commit b201831
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Source/v2/Meadow.Cli/Meadow.CLI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Authors>Wilderness Labs, Inc</Authors>
<Company>Wilderness Labs, Inc</Company>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageVersion>2.0.56.0</PackageVersion>
<PackageVersion>2.0.57.0</PackageVersion>
<Platforms>AnyCPU</Platforms>
<PackageProjectUrl>http://developer.wildernesslabs.co/Meadow/Meadow.CLI/</PackageProjectUrl>
<RepositoryUrl>https://github.com/WildernessLabs/Meadow.CLI</RepositoryUrl>
Expand Down
2 changes: 1 addition & 1 deletion Source/v2/Meadow.Cli/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ namespace Meadow.CLI;

public static class Constants
{
public const string CLI_VERSION = "2.0.56.0";
public const string CLI_VERSION = "2.0.57.0";
}
2 changes: 1 addition & 1 deletion Source/v2/Meadow.Dfu/DfuUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public static async Task<bool> FlashFile(string fileName, string? dfuSerialNumbe

if (!File.Exists(fileName))
{
logger.LogError($"Unable to find file '{fileName}'. Please specify valid --File or download the latest with: meadow download os");
logger.LogError($"Unable to find file '{fileName}'. Please specify valid --File or download the latest with: meadow firmware download");
return false;
}

Expand Down

0 comments on commit b201831

Please sign in to comment.