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