boltpkg / bolt

⚡️ Super-powered JavaScript project management
MIT License
2.34k stars 84 forks source link

bolt: command not found #290

Closed verberden closed 3 years ago

verberden commented 3 years ago
Title Description
Version 0.24.8
Type Issue
node v10.24.0
Operating System Debian 10
Short Description bolt: command not found
Detailed description Hello! i'm using nvm for node install and also install yarn apt install --no-install-recommends yarn. Then make yarn global add bolt and everything is ok. But then even after restart the computer when i'm trying in command line bolt i'm getting an error bash: bolt: command not found. What am i doing wrong?
lukebatchelor commented 3 years ago

It's possible your yarn installation hasn't edited your PATH variable to include its global bin directory.

You could run

yarn global bin

To get that directory, the add that to your PATH variable.

verberden commented 3 years ago

To get that directory, the add that to your PATH variable.

Oh! Sorry for late feedback. Your suggestion was absolutely right! Thanks a lot!