X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=INSTALL.sh;fp=INSTALL.sh;h=58656614bd1260d375c068a5e0aac5be8a696863;hb=da3a5c4394ca298a68e367859ef226e6bcc3b873;hp=cef7ff5dd65044102c102010d7eae2fa31beb0d1;hpb=2617ba59a2cfa2e1928cb8442b37d0c509670b1f;p=brisk.git diff --git a/INSTALL.sh b/INSTALL.sh index cef7ff5..5865661 100755 --- a/INSTALL.sh +++ b/INSTALL.sh @@ -99,7 +99,7 @@ if [ "$1" = "chk" ]; then taggit="$(git describe --tags | sed 's/^v//g')" tagphp="$(grep "^\$G_brisk_version = " web/Obj/brisk.phh | sed 's/^[^"]\+"//g;s/".*//g')" - if [ "$taggit" != "v$tagphp" ]; then + if [ "$taggit" != "$tagphp" ]; then echo echo "WARNING: taggit: [$taggit] tagphp: [$tagphp]" echo @@ -416,7 +416,7 @@ if [ -f "$etc_path/$brisk_conf" ]; then echo "Config file $etc_path/$brisk_conf exists." echo "=== Dump the diff. ===" # diff -u "$etc_path/$brisk_conf" "${web_path}__""/Obj/brisk.conf-templ.pho" - diff -u <(cat "$etc_path/$brisk_conf" | grep '\$[a-zA-Z_ ]\+=' | sed 's/ = .*/ = /g' | sort | uniq) <(cat "${web_path}__""/Obj/brisk.conf-templ.pho" | grep '\$[a-zA-Z_ ]\+=' | sed 's/ = .*/ = /g' | sort | uniq ) + diff -u <(cat "$etc_path/$brisk_conf" | egrep -v '^//|^#' | grep '\$[a-zA-Z_ ]\+=' | sed 's/ \+= .*/ = /g' | sort | uniq) <(cat "${web_path}__""/Obj/brisk.conf-templ.pho" | egrep -v '^//|^#' | grep '\$[a-zA-Z_ ]\+=' | sed 's/ \+= .*/ = /g' | sort | uniq ) echo "=== End dump. ===" else echo "Config file $etc_path/$brisk_conf not exists."