mirror of https://github.com/explosion/spaCy.git
10 lines
129 B
Bash
10 lines
129 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
if [ ! -d ".build" ]; then
|
||
|
virtualenv .build --python $1
|
||
|
fi
|
||
|
|
||
|
. .build/bin/activate
|
||
|
python build.py $2 $3
|