fixed bug in build script that caused incorrect header comment
This commit is contained in:
13
sns.sh
13
sns.sh
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user