Skip to content

Commit 347a76c

Browse files
committed
Allow overriding venv path using $VENV environment variable
See #3 for discussion.
1 parent 4542301 commit 347a76c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
VENV="/var/tmp/venv"
5+
VENV="${VENV:-/var/tmp/venv}"
66
log(){ echo "$*" >&2; }
77

88
log "Running as $(id -u):$(id -g)"

0 commit comments

Comments
 (0)