Fixed incorrect use of 'test -a' (for FreeBSD).
This commit is contained in:
parent
e0939a4995
commit
acbbb2d5b9
|
@ -12,12 +12,12 @@
|
|||
## $LINUXDIST holds the name of the distribution
|
||||
## $JADETAG adds "/#html" to the stylesheet-specification in the Jade
|
||||
## command line (see comments below), if necessary for that dist.
|
||||
if [ -a /etc/debian_version ]; then
|
||||
if [ -e /etc/debian_version ]; then
|
||||
LINUXDIST="Debian"
|
||||
JADETAG=\#html
|
||||
fi
|
||||
|
||||
if [ -a /etc/redhat_release ]; then
|
||||
if [ -e /etc/redhat_release ]; then
|
||||
LINUXDIST="Redhat"
|
||||
JADETAG=
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue