mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 12:18:50 +02:00
Fix issue#24
This commit is contained in:
@@ -230,6 +230,16 @@ namespace Wox
|
||||
case "hidestart":
|
||||
HideApp();
|
||||
break;
|
||||
|
||||
case "installplugin":
|
||||
var path = args[1];
|
||||
if (!File.Exists(path))
|
||||
{
|
||||
MessageBox.Show("Plugin " + path + " didn't exist");
|
||||
return;
|
||||
}
|
||||
PluginInstaller.Install(path);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user