fixed bug in build script that caused incorrect header comment

This commit is contained in:
Jon-William Lewis
2015-06-10 08:38:25 -05:00
parent 121abb1df7
commit d70d3b4312
3 changed files with 18 additions and 9 deletions

View File

@@ -1,4 +1,10 @@
#!/bin/bash
PROD_STR="Simple Note System"
VER_STR="v2.0a5"
cat << EOF
#!/bin/bash
#==========================================================
# $PROD_STR, $VER_STR
# Copyright 2014, Xenese Labs/Sicron-Perion XNF
@@ -6,8 +12,10 @@
if [ -z "$HOME" ]; then HOME=/home/$(whoami); fi
PROD_STR="Simple Note System"
VER_STR="v2.0a5"
PROD_STR="$PROD_STR"
VER_STR="$VER_STR"
ROOTDIR="$HOME"/.config/sns
BASEDIR="$ROOTDIR"/notes
CONFIGURATION="$ROOTDIR/sns.conf"
EOF