Skip to content

Commit

Permalink
fix: fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenRamadan committed Oct 27, 2023
1 parent bc3c6af commit 3c23b78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utilities/installDependencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { AdditionalPluginsSpec } from './inputProcessors';
export const installDependencies = async (
additionalPlugins?: AdditionalPluginsSpec,
): Promise<void> => {
const actionRoot = pathResolve(__dirname, '../../');
const actionRoot = pathResolve(__dirname, '../');

const additionalPackages = Object.entries(additionalPlugins ?? []).map(
([plugin, version]: [string, string]): string => `${plugin}@${version}`,
Expand Down

0 comments on commit 3c23b78

Please sign in to comment.