1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-26 01:37:20 +00:00

Merge pull request #6764 from targhs/doc/correct-installation-shell-syntax

Correct shell syntax for installation using git
This commit is contained in:
TW 2022-06-12 17:20:48 +02:00 committed by GitHub
commit a4fc8a29f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -371,7 +371,7 @@ While we try not to break master, there are no guarantees on anything.
git clone https://github.com/borgbackup/borg.git git clone https://github.com/borgbackup/borg.git
# create a virtual environment # create a virtual environment
virtualenv --python=${which python3} borg-env virtualenv --python=$(which python3) borg-env
source borg-env/bin/activate # always before using! source borg-env/bin/activate # always before using!
# install borg + dependencies into virtualenv # install borg + dependencies into virtualenv