mirror of
https://github.com/haiwen/seafile-server.git
synced 2025-04-27 11:10:49 +00:00
13 lines
165 B
Bash
Executable File
13 lines
165 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
SCRIPT=${BASH_SOURCE[0]}
|
|
PROJECT_DIR=$(dirname "${SCRIPT}")
|
|
|
|
cd $PROJECT_DIR
|
|
|
|
export PYTHONPATH=$PROJECT_DIR:$PYTHONPATH
|
|
|
|
ci/run.py --test-only
|