10 lines
139 B
Bash
Executable File
10 lines
139 B
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
# Author: Landon Dyck
|
|
# Mounts the virtual environment in your path
|
|
|
|
# Usage: $ . ./virtualenv.sh
|
|
|
|
|
|
PATH=${PWD}/env/bin:${PATH} |