8 lines
244 B
Bash
8 lines
244 B
Bash
|
#!/bin/sh
|
||
|
export debug="true"
|
||
|
export version="0.1"
|
||
|
if [ $debug = "true" ]; then
|
||
|
echo "NOTE: This is going to be a development build. Please make sure you downloaded the point version from the 'about' tab if you wanted a stabler version."
|
||
|
|
||
|
fi
|