1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-19 13:54:25 +01:00

Automatically move to the project folder when login in the virtual environment

This commit is contained in:
David O' Rojo 2019-08-30 11:49:50 -05:00
parent fa23079199
commit 388fe7df1b
2 changed files with 4 additions and 1 deletions

View File

@ -227,7 +227,6 @@ environment.
dependencies:
```bash
cd /vagrant
bundle install
yarn install
```

View File

@ -14,6 +14,10 @@ set_user_config() {
echo 'export LC_ALL=en_US.UTF-8' >> ~/.profile
echo 'export LANG=en_US.UTF-8' >> ~/.profile
echo -e 'export LANGUAGE=en_US.UTF-8\n' >> ~/.profile
# Switch to project path after login
echo -e '\n# Navigate to /vagrant after login' >> ~/.profile
echo -e 'cd /vagrant\n' >> ~/.profile
}
###