7 lines
120 B
Bash
7 lines
120 B
Bash
#!/bin/bash
|
|
# shellcheck disable=SC1090,SC1091
|
|
# Python virtualenv
|
|
function activate() {
|
|
source "$1/bin/activate"
|
|
}
|