]> git.xonotic.org Git - xonotic/xonotic.git/commitdiff
better naming
authorxonotic <xonotic@ONE.(none)>
Thu, 18 Mar 2010 14:19:19 +0000 (15:19 +0100)
committerxonotic <xonotic@ONE.(none)>
Thu, 18 Mar 2010 14:19:19 +0000 (15:19 +0100)
all-download.sh [new file with mode: 0755]
all-pull.sh [new file with mode: 0755]
download-data.sh [deleted file]

diff --git a/all-download.sh b/all-download.sh
new file mode 100755 (executable)
index 0000000..e914ce0
--- /dev/null
@@ -0,0 +1,27 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+       local)
+               base=ssh://gitolite
+               ;;
+       ssh)
+               base=ssh://xonotic@git.xonotic.org
+               ;;
+       git)
+               base=git://git.xonotic.org/xonotic
+               ;;
+       http)
+               base=http://git.xonotic.org/~xonotic
+               ;;
+       *)
+               echo "Usage: $0 transport, where transport might be local, ssh, git or http"
+               exit 1
+               ;;
+esac
+
+mkdir -p data
+git clone "$base/xonotic-data.pk3dir" data/xonotic-data.pk3dir
+git clone "$base/xonotic-maps.pk3dir" data/xonotic-maps.pk3dir
+git clone "$base/xonotic-music.pk3dir" data/xonotic-music.pk3dir
diff --git a/all-pull.sh b/all-pull.sh
new file mode 100755 (executable)
index 0000000..0df6902
--- /dev/null
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+set -ex
+git pull
+for x in "`pwd`/data"/*.pk3dir; do
+       cd "$x"
+       git pull
+done
diff --git a/download-data.sh b/download-data.sh
deleted file mode 100755 (executable)
index e914ce0..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-set -e
-
-case "$1" in
-       local)
-               base=ssh://gitolite
-               ;;
-       ssh)
-               base=ssh://xonotic@git.xonotic.org
-               ;;
-       git)
-               base=git://git.xonotic.org/xonotic
-               ;;
-       http)
-               base=http://git.xonotic.org/~xonotic
-               ;;
-       *)
-               echo "Usage: $0 transport, where transport might be local, ssh, git or http"
-               exit 1
-               ;;
-esac
-
-mkdir -p data
-git clone "$base/xonotic-data.pk3dir" data/xonotic-data.pk3dir
-git clone "$base/xonotic-maps.pk3dir" data/xonotic-maps.pk3dir
-git clone "$base/xonotic-music.pk3dir" data/xonotic-music.pk3dir