Skip to content

Commit

Permalink
Merge pull request #1895 from snowteamer/fix-chel-not-found-error
Browse files Browse the repository at this point in the history
Fix 'bash: chel not found' error when chel isn't installed globally
  • Loading branch information
taoeffect authored Mar 24, 2024
2 parents 0c1d6bf + 3e2a897 commit 21d4bda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ module.exports = (grunt) => {
grunt.log.writeln(chalk.underline(`Key file ${keyFile} exists, using that.`))
} else {
grunt.log.writeln(chalk.underline(`\nRunning 'chel keygen --pubout ${pubKeyFile} --out ${keyFile}'`))
const { stdout } = await execWithErrMsg(`chel keygen --pubout ${pubKeyFile} --out ${keyFile}`)
const { stdout } = await execWithErrMsg(`./node_modules/.bin/chel keygen --pubout ${pubKeyFile} --out ${keyFile}`)
console.log(stdout)
}
grunt.log.writeln(chalk.underline("\nRunning 'chel manifest'"))
Expand Down

0 comments on commit 21d4bda

Please sign in to comment.