diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-31 10:31:06 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-31 10:31:06 +0000 |
commit | 97c4e8980c65df6fa56f87c09a820ec7626d2e02 (patch) | |
tree | a370d79cd5a6b187480d6ba1c049105ffc228796 /chrome/browser/extensions/extension_creator.cc | |
parent | 4eef339d670cfc2c884719347558647aab609f76 (diff) | |
download | chromium_src-97c4e8980c65df6fa56f87c09a820ec7626d2e02.zip chromium_src-97c4e8980c65df6fa56f87c09a820ec7626d2e02.tar.gz chromium_src-97c4e8980c65df6fa56f87c09a820ec7626d2e02.tar.bz2 |
Adds a button to chrome://extensions/ that allows easy packing
of extensions into crx files.
BUG=20578
TEST=Create a sample extension, pack it, then try to install it.
Review URL: http://codereview.chromium.org/181020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24877 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_creator.cc')
-rw-r--r-- | chrome/browser/extensions/extension_creator.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/extension_creator.cc b/chrome/browser/extensions/extension_creator.cc index 7b7c389..00ea023 100644 --- a/chrome/browser/extensions/extension_creator.cc +++ b/chrome/browser/extensions/extension_creator.cc @@ -44,8 +44,8 @@ bool ExtensionCreator::InitializeInput( if (private_key_path.value().empty() && !private_key_output_path.value().empty() && file_util::PathExists(private_key_output_path)) { - error_message_ = "Private key exists next to input directory. Try using " - "--pack-extension-key"; + error_message_ = "A private key for specified extension already exists. " + "Reuse that key or delete it first."; return false; } |