From 5b54db31cce5f4287bdf0f6c5b83f36d32780bfa Mon Sep 17 00:00:00 2001 From: TheAssassin Date: Tue, 28 Aug 2018 15:46:35 +0200 Subject: [PATCH] Fix error message --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index c8ee503..3f606cf 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -305,7 +305,7 @@ int main(int argc, char** argv) { if (plugin->pluginType() != linuxdeploy::plugin::OUTPUT_TYPE) { if (plugin->pluginType() == linuxdeploy::plugin::INPUT_TYPE) { - ldLog() << LD_ERROR << "Plugin" << pluginName << "is an input plugin, please use like --output" << pluginName << std::endl; + ldLog() << LD_ERROR << "Plugin" << pluginName << "is an input plugin, please use like --plugin" << pluginName << std::endl; } else { ldLog() << LD_ERROR << "Plugin" << pluginName << "has unknown type:" << plugin->pluginType() << std::endl; }