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';
66
77export async function verifyPlugin ( config : PluginConfig ) : Promise < void > {
88 const pluginPath = config . path
9- ? path . resolve ( config . path , config . slug )
9+ ? path . resolve ( config . path )
1010 : path . resolve ( './' ) ;
1111 const errors : SemanticReleaseError [ ] = [ ] ;
1212
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { PluginConfig } from '../classes/plugin-config.class.js';
66
77export async function verifyTheme ( config : PluginConfig ) : Promise < void > {
88 const themePath = config . path
9- ? path . resolve ( config . path , config . slug )
9+ ? path . resolve ( config . path )
1010 : path . resolve ( './' ) ;
1111 const errors : SemanticReleaseError [ ] = [ ] ;
1212
You can’t perform that action at this time.
0 commit comments