mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
17 lines
286 B
Bash
Executable File
17 lines
286 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ ! -d ".build" ]; then
|
|
virtualenv .build --python $1
|
|
fi
|
|
|
|
if [ -d ".build/bin" ]; then
|
|
source .build/bin/activate
|
|
elif [ -d ".build/Scripts" ]; then
|
|
source .build/Scripts/activate
|
|
fi
|
|
|
|
python build.py prepare $3
|
|
python build.py $2
|
|
python build.py test
|