Compare commits
No commits in common. "66aa5d1712d348852dca5719006b54984201ce5b" and "ca6d7d7d0b40ee91307ab1b9bcec9369a9d63060" have entirely different histories.
66aa5d1712
...
ca6d7d7d0b
|
@ -1,21 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
###########################
|
|
||||||
#
|
|
||||||
# Draws all svgs in a sequence. Starts with a
|
|
||||||
# fieldguide unless beginning the sequence not
|
|
||||||
# on the first frame, provided as the second argument.
|
|
||||||
#
|
|
||||||
###########################
|
|
||||||
|
|
||||||
source ./common.sh
|
|
||||||
|
|
||||||
dbSetup
|
|
||||||
|
|
||||||
|
|
||||||
for i in {1..4} ; do
|
|
||||||
echo "Drawing focus field ${i}..."
|
|
||||||
bash field.sh "${i}"
|
|
||||||
|
|
||||||
askContinue "Draw next focus field?" "Drawing next field..."
|
|
||||||
done
|
|
16
install.sh
16
install.sh
|
@ -1,16 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if [ ! -d "numbers/node_modules" ]; then
|
|
||||||
cd numbers
|
|
||||||
npm i
|
|
||||||
cd ..
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -d "fourcell/env" ]; then
|
|
||||||
cd fourcell
|
|
||||||
python -m venv env
|
|
||||||
source env/bin/activate
|
|
||||||
python -m pip install -r requirements.txt
|
|
||||||
deactivate
|
|
||||||
cd ..
|
|
||||||
fi
|
|
|
@ -5,7 +5,6 @@
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "numbers",
|
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"name": "animation",
|
|
||||||
"lockfileVersion": 2,
|
|
||||||
"requires": true,
|
|
||||||
"packages": {}
|
|
||||||
}
|
|
Loading…
Reference in New Issue