15 lines
171 B
Bash
Executable file
15 lines
171 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
|
|
|
|
if [ $# -lt 1 ]
|
|
then echo "Usage: ./build.sh <node>" && exit 1
|
|
fi
|
|
|
|
|
|
node="$1"
|
|
src=./nodes.lus
|
|
|
|
|
|
luciole $src "$node"
|