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

13
sns.sh
View File

@@ -1,16 +1,17 @@
#!/bin/bash
#==========================================================
# $PROD_STR, $VER_STR
# Simple Note System, v2.0a5
# Copyright 2014, Xenese Labs/Sicron-Perion XNF
#==========================================================
if [ -z "$HOME" ]; then HOME=/home/$(whoami); fi
if [ -z "/Users/xilmwa" ]; then HOME=/home/xilmwa; fi
PROD_STR="Simple Note System"
VER_STR="v2.0a5"
ROOTDIR="$HOME"/.config/sns
BASEDIR="$ROOTDIR"/notes
CONFIGURATION="$ROOTDIR/sns.conf"
ROOTDIR="/Users/xilmwa"/.config/sns
BASEDIR=""/notes
CONFIGURATION="/sns.conf"
# Section: Functions
function w_conf {
@@ -276,7 +277,7 @@ else
fi
# Note: w_conf and help have highest priority, as they are the only functions
# that can work without any parameters.
# that can work without any arguments.
#==============================================================================
# End Section: Argument Parsing