9 lines
205 B
Bash
9 lines
205 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# processing-java requires the full path of the sketch
|
||
|
SKETCH=`realpath ./`
|
||
|
|
||
|
# pass all arguments on bash script to stipple_gen.pde sketch
|
||
|
processing-java --sketch="${SKETCH}" --run \
|
||
|
"${@}"
|