mirror of https://github.com/nucypher/nucypher.git
11 lines
275 B
Bash
Executable File
11 lines
275 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# runs inside docker container with access to local volume.
|
|
# needed for local development, creates nucypher.egg-info on local disk
|
|
# if it doesn't exist.
|
|
|
|
if [ ! -e /code/nucypher.egg-info ]; then
|
|
echo "First time install..."
|
|
python setup.py develop
|
|
fi
|