diff --git a/dist/index.js b/dist/index.js index 33b8351..19b9415 100644 --- a/dist/index.js +++ b/dist/index.js @@ -26041,7 +26041,7 @@ async function run() { const boltSudoersFileContent = await boltSudoers(boltUser); fs.writeFileSync('bolt-sudoers', boltSudoersFileContent) await exec(`sudo chown root:wheel bolt-sudoers`) - await exec(`sudo mv bolt-sudoeers-conf /etc/sudoers.d/${boltUser}`) + await exec(`sudo mv bolt-sudoeers /etc/sudoers.d/${boltUser}`) } core.info('Creating bolt user... done') diff --git a/src/main.js b/src/main.js index c2e7cc9..9ecd78f 100644 --- a/src/main.js +++ b/src/main.js @@ -47,7 +47,7 @@ async function run() { const boltSudoersFileContent = await boltSudoers(boltUser); fs.writeFileSync('bolt-sudoers', boltSudoersFileContent) await exec(`sudo chown root:wheel bolt-sudoers`) - await exec(`sudo mv bolt-sudoeers-conf /etc/sudoers.d/${boltUser}`) + await exec(`sudo mv bolt-sudoeers /etc/sudoers.d/${boltUser}`) } core.info('Creating bolt user... done')