Browse Source

Fix detection of txt2tags in installation script

pull/1/merge
George Vlahavas 11 years ago
parent
commit
2338c4f944
  1. 4
      install.sh

4
install.sh

@ -2,7 +2,9 @@
cd $(dirname $0)
if [ -x $( which txt2tags ) ]; then
which txt2tags &> /dev/null
retval=$?
if [ $retval -eq 0 ]; then
cd man
txt2tags xdgmenumaker.t2t
cd ..

Loading…
Cancel
Save