Skip to content

Commit

Permalink
chore: fix install-dependencies.sh path
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenRamadan committed Oct 26, 2023
1 parent 90f363e commit 3db69a5
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 3db69a5

Please sign in to comment.