Skip to content

Commit

Permalink
try user installation
Browse files Browse the repository at this point in the history
  • Loading branch information
burgerdev committed Oct 9, 2024
1 parent 035c59a commit 9eb2df2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function logIfDebug(msg: string) {
export async function get(tok: string, dir: string): Promise<Input> {
logIfDebug('Ensuring core python and ruby dependencies are present');

await exec.exec('pip', ['install', 'docutils']);
await exec.exec('pip', ['install', '--user', 'docutils']);
logIfDebug('`pip install docutils` complete');

await exec.exec('gem', ['install', 'asciidoctor', '--user-install']);
Expand Down

0 comments on commit 9eb2df2

Please sign in to comment.