Skip to content

Commit

Permalink
Change just installation to use npm
Browse files Browse the repository at this point in the history
  • Loading branch information
jennydaman committed Dec 20, 2024
1 parent 2119368 commit ad356e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions githubActions/setup.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const child_process = require('child_process');

child_process.execFileSync(
'sudo',
['apt-get', 'install', '-y', 'just'],
'npm',
['install', '-g', 'rust-just'],
{ stdio: 'inherit' }
);

0 comments on commit ad356e7

Please sign in to comment.