File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { PluginConfig } from '../classes/plugin-config.class.js';
6
6
7
7
export async function verifyPlugin ( config : PluginConfig ) : Promise < void > {
8
8
const pluginPath = config . path
9
- ? path . resolve ( config . path , config . slug )
9
+ ? path . resolve ( config . path )
10
10
: path . resolve ( './' ) ;
11
11
const errors : SemanticReleaseError [ ] = [ ] ;
12
12
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { PluginConfig } from '../classes/plugin-config.class.js';
6
6
7
7
export async function verifyTheme ( config : PluginConfig ) : Promise < void > {
8
8
const themePath = config . path
9
- ? path . resolve ( config . path , config . slug )
9
+ ? path . resolve ( config . path )
10
10
: path . resolve ( './' ) ;
11
11
const errors : SemanticReleaseError [ ] = [ ] ;
12
12
You can’t perform that action at this time.
0 commit comments