From: xonotic Date: Thu, 18 Mar 2010 14:19:19 +0000 (+0100) Subject: better naming X-Git-Tag: xonotic-v0.1.0preview~554 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=commitdiff_plain;h=70c62d49310ff620374be30201133920b1ca75bd better naming --- diff --git a/all-download.sh b/all-download.sh new file mode 100755 index 00000000..e914ce0a --- /dev/null +++ b/all-download.sh @@ -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 index 00000000..0df6902c --- /dev/null +++ b/all-pull.sh @@ -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 index e914ce0a..00000000 --- a/download-data.sh +++ /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