Version moved to its own script for code reuse
This commit is contained in:
parent
cf32fcc856
commit
84e07d8e60
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
echo "Compiling GNAL v1"
|
echo "Compiling GNAL v1"
|
||||||
|
|
||||||
VERSION=`openscad -v 2>&1 >/dev/null | awk '{print $3}'`
|
VERSION=`bash ./scripts/version.sh`
|
||||||
CPU=`bash ./scripts/cpu.sh`
|
CPU=`bash ./scripts/cpu.sh`
|
||||||
DIST=./dist/
|
DIST=./dist/
|
||||||
NOTES=./notes/v1.csv
|
NOTES=./notes/v1.csv
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
openscad -v 2>&1 >/dev/null | awk '{print $3}'
|
Loading…
Reference in New Issue