Fix update.sh one last time.
This commit is contained in:
parent
56695b3cb6
commit
8bbe01d74f
1 changed files with 8 additions and 4 deletions
12
update.sh
12
update.sh
|
@ -30,13 +30,17 @@ else
|
||||||
hg clone http://hg.louiz.org/dnspython
|
hg clone http://hg.louiz.org/dnspython
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -e "src/dns" ]
|
if [ -h "src/dns" ]
|
||||||
then
|
then
|
||||||
|
echo 'Link src/dns already exists'
|
||||||
|
else
|
||||||
echo "Creating link src/dns"
|
echo "Creating link src/dns"
|
||||||
ln -s src/dns dnspython/dns
|
ln -s dnspython/dns src/dns
|
||||||
fi
|
fi
|
||||||
if [ ! -e "src/sleekxmpp" ]
|
if [ -h "src/sleekxmpp" ]
|
||||||
then
|
then
|
||||||
|
echo 'Link src/sleekxmpp already exists'
|
||||||
|
else
|
||||||
echo "Creating link src/sleekxmpp"
|
echo "Creating link src/sleekxmpp"
|
||||||
ln -s src/sleekxmpp SleekXMPP/sleekxmpp
|
ln -s SleekXMPP/sleekxmpp src/sleekxmpp
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue