summaryrefslogtreecommitdiff
path: root/update.sh
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2013-01-17 17:37:06 +0100
committermathieui <mathieui@mathieui.net>2013-01-17 17:37:06 +0100
commitc5cc462963363b2307a2a341da170829385a9589 (patch)
tree7a93dec042fef00865dab70320ed4cb8f560a9e9 /update.sh
parentb06240ee7b4940af52a0c01915214860d8a06bb2 (diff)
downloadpoezio-c5cc462963363b2307a2a341da170829385a9589.tar.gz
poezio-c5cc462963363b2307a2a341da170829385a9589.tar.bz2
poezio-c5cc462963363b2307a2a341da170829385a9589.tar.xz
poezio-c5cc462963363b2307a2a341da170829385a9589.zip
Move to the upstream SleekXMPP
- remove the decline command that is not in the trunk (and mediated declines are supported nowhere anyway) - change a bit xhtml-im support - change the bookmarks management a bit - Add a verification to avoid crashing when poezio will be launched the next time - Fix the (unrelated) bug when setting a jid affiliation
Diffstat (limited to 'update.sh')
-rwxr-xr-xupdate.sh15
1 files changed, 12 insertions, 3 deletions
diff --git a/update.sh b/update.sh
index bf526042..7aff4082 100755
--- a/update.sh
+++ b/update.sh
@@ -20,14 +20,23 @@ fi
if [ -e "SleekXMPP" ]
then
+ echo "Removing the old SleekXMPP"
+ rm -rf SleekXMPP
+ rm src/sleekxmpp
+ git clone https://github.com/fritzy/SleekXMPP.git Sleek
+fi
+
+if [ -e "Sleek" ]
+then
echo "Updating SleekXMPP"
- cd SleekXMPP
+ cd Sleek
git pull
cd ..
else
echo "Downloading SleekXMPP"
- git clone git://github.com/louiz/SleekXMPP.git
+ git clone https://github.com/fritzy/SleekXMPP.git Sleek
fi
+
if [ -e ".dnspython.tgz" ]
then
if [ -e "dnspython" ]
@@ -59,5 +68,5 @@ then
echo 'Link src/sleekxmpp already exists'
else
echo "Creating link src/sleekxmpp"
- ln -s ../SleekXMPP/sleekxmpp sleekxmpp
+ ln -s ../Sleek/sleekxmpp sleekxmpp
fi