mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2024-10-01 01:45:38 -04:00
16 lines
215 B
Bash
Executable File
16 lines
215 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
cd "${0%/*}"
|
|
cd ../../boards/mta1-usb-v1/test
|
|
|
|
if [ ! -e venv ]; then
|
|
python3 -m venv venv
|
|
. ./venv/bin/activate
|
|
pip3 install -r requirements.txt
|
|
else
|
|
. ./venv/bin/activate
|
|
fi
|
|
|
|
./reset.py
|