ctf-tools/scratchablock/install

15 lines
305 B
Text
Raw Normal View History

2017-04-23 16:04:40 +00:00
#!/bin/bash -ex
2017-04-23 17:38:30 +00:00
ctf-tools-pip3 install nose
2017-04-23 16:04:40 +00:00
git clone --recursive https://github.com/pfalcon/ScratchABlock
source ctf-tools-venv-activate3
mkdir -p bin
cd bin
for i in ../ScratchABlock/*.py
do
ln -s $i ./scratchablock-$(basename $i)
done
ln -s ../ScratchABlock/run_tests ./scratchablock-runtests
cd ..