summarylogtreecommitdiffstats
path: root/wrapper-telepresence.sh
blob: 11cadb5bfe104e94f95e133862bd6cf9e24631af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

# wrap the virtualenv and extend $PATH to include telepresence

export VIRTUAL_ENV=/opt/telepresence/telepresence-venv
export PATH="${VIRTUAL_ENV}/bin:$PATH"


RUNME=telepresence


# pass args on
"${VIRTUAL_ENV}/bin/${RUNME}" $@