From 5be457e0285825f254d841eec72716cac0fd9245 Mon Sep 17 00:00:00 2001 From: MathuSum Mut Date: Sun, 4 Nov 2018 19:10:09 +0100 Subject: [PATCH] Removed git update script --- git_update.sh | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100755 git_update.sh diff --git a/git_update.sh b/git_update.sh deleted file mode 100755 index ce4cbffcc..000000000 --- a/git_update.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash -# -# git_update.sh: update the ZetaGlest source and data repos. Use this -# script if you've cloned from the master repositories, not if you're -# a fork. -# -# FIXME: there should be a way to check if this is a clone of the -# main repo, or a fork. If it's a fork, this shouldn't be run. Mentioned -# in the docs, but it would be good to have a catch in this script. - -export LANG=C - -cd "$(dirname $(readlink -f $0))" && - -echo $PWD - -git pull && - -echo $PWD - -cd ../zetaglest-data && -git pull && - -exit 0