We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a5aa89 commit cf99816Copy full SHA for cf99816
webknossos/local_wk_setup.sh
@@ -14,6 +14,14 @@ function ensure_local_test_wk {
14
WK_DOCKER_DIR="tests"
15
pushd $WK_DOCKER_DIR > /dev/null
16
docker-compose pull webknossos
17
+ if [ ! -d binaryData/Organization_X/l4_sample ]; then
18
+ mkdir -p binaryData/Organization_X
19
+ pushd binaryData/Organization_X > /dev/null
20
+ wget https://static.webknossos.org/data/l4_sample.zip
21
+ unzip l4_sample.zip
22
+ rm l4_sample.zip
23
+ popd > /dev/null
24
+ fi
25
USER_UID=$(id -u) USER_GID=$(id -g) docker-compose up -d --no-build webknossos
26
stop_wk () {
27
ARG=$?
0 commit comments