Skip to content

Commit

Permalink
fix a typo for portable build
Browse files Browse the repository at this point in the history
  • Loading branch information
taooceros committed May 26, 2024
1 parent ac49888 commit d0e0929
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Plugins/Flow.Launcher.Plugin.BrowserBookmark/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace Flow.Launcher.Plugin.BrowserBookmark;

public class Main : ISettingProvider, IPlugin, IReloadable, IPluginI18n, IContextMenu, IDisposable
{
private static PluginInitContext _context;
internal static PluginInitContext _context { get; private set; } = null!;

private static List<Bookmark> _cachedBookmarks = new List<Bookmark>();

Expand Down
2 changes: 1 addition & 1 deletion Plugins/Flow.Launcher.Plugin.Calculator/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class Main : IPlugin, IPluginI18n, ISettingProvider
private const string comma = ",";
private const string dot = ".";

private PluginInitContext Context { get; set; }
internal static PluginInitContext Context { get; set; }

private static Settings _settings;
private static SettingsViewModel _viewModel;
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ artifacts:
name: Plugin nupkg
- path: 'Releases\FlowLauncher-*.exe'
name: Squirrel Installer
- path: 'Release\FlowLauncher-*-Portable.zip'
- path: 'Releases\FlowLauncher-*-Portable.zip'
name: Portable Version
- path: 'Releases\FlowLauncher-*-full.nupkg'
name: Squirrel nupkg
Expand Down

0 comments on commit d0e0929

Please sign in to comment.