fix(Toolkit/Plugin): throw an Error instead of a string (#26618)
This commit is contained in:
@@ -116,7 +116,7 @@ const packagePluginRunner: TaskRunner<PluginCIOptions> = async () => {
|
||||
|
||||
fs.exists(jobsDir, jobsDirExists => {
|
||||
if (!jobsDirExists) {
|
||||
throw 'You must run plugin:ci-build prior to running plugin:ci-package';
|
||||
throw new Error('You must run plugin:ci-build prior to running plugin:ci-package');
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user