Fix a a bug in commands directory creation.
This commit is contained in:
parent
7636ee44a0
commit
3e3e28b675
1 changed files with 3 additions and 3 deletions
|
@ -599,9 +599,9 @@ extract_commands() { #
|
||||||
VERSION=`grep "ENTITY version " $BOOK/general.ent | sed 's@<!ENTITY version "@@;s@">@@'`
|
VERSION=`grep "ENTITY version " $BOOK/general.ent | sed 's@<!ENTITY version "@@;s@">@@'`
|
||||||
|
|
||||||
# Start clean
|
# Start clean
|
||||||
if [ -d commands ]; then
|
if [ -d ${PROGNAME}-commands ]; then
|
||||||
rm -rf commands
|
rm -rf ${PROGNAME}-commands
|
||||||
mkdir -v commands
|
mkdir -v ${PROGNAME}-commands
|
||||||
fi
|
fi
|
||||||
echo -n "Extracting commands for"
|
echo -n "Extracting commands for"
|
||||||
|
|
||||||
|
|
Reference in a new issue