We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cde10a8 commit 2a283d9Copy full SHA for 2a283d9
src/cmd/sign.js
@@ -66,8 +66,18 @@ export default function sign(
66
if (idFromSourceDir && !id) {
67
throw new UsageError(
68
'Cannot use previously auto-generated extension ID ' +
69
- `${idFromSourceDir} - This extension ID must be specified in the manifest.json file.`,
70
- );
+ `${idFromSourceDir} - This extension ID must be specified in the manifest.json file. For example:
+
71
+ // manifest.json
72
+ {
73
+ "browser_specific_settings": {
74
+ "gecko": {
75
+ "id": "${idFromSourceDir}"
76
+ }
77
+ },
78
79
+ ...
80
+ }`);
81
}
82
83
if (!id) {
0 commit comments