Last active
August 29, 2015 14:13
-
-
Save nikcorg/6fcdab4e8e7462e3ee6e to your computer and use it in GitHub Desktop.
Git helper scripts updater
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Usage: simply run the script, | |
# add -q for message suppression | |
# add -qq for all output suppression | |
# If you plan to run this script using cron and you feel unsure of | |
# your cron environment, uncomment the line below and edit the path | |
#HOME="<path to your home directory here>" | |
# A space separated list of scripts to keep updated, for options see: | |
# https://github.com/git/git/tree/master/contrib/completion | |
SCRIPTS="git-completion.bash git-prompt.sh" | |
# Where to place the downloaded scripts | |
DEST="$HOME/bin" | |
# Where to download the scripts from | |
URLSTEM="https://raw.githubusercontent.com/git/git/master/contrib/completion" | |
# Required programs | |
MD5=$(which md5) | |
CURL=$(which curl) | |
# Error exit codes | |
ERR_DOWNLOAD_FAILED=1 | |
ERR_DEST_DIR_MISSING=2 | |
ERR_HOME_PATH_UNKNOWN=3 | |
ERR_MISSING_TOOL=4 | |
# Info output suppression | |
QUIET=2 | |
if [ "x$1" != "x" -a "$1" = "-qq" ]; | |
then | |
QUIET=0 | |
elif [ "x$1" != "x" -a "$1" = "-q" ]; | |
then | |
QUIET=1 | |
fi | |
info() | |
{ | |
if [ $QUIET -lt 2 ]; | |
then | |
return 0 | |
fi | |
echo "$@" >&1 | |
} | |
error_exit() | |
{ | |
local EXITCODE=$1 | |
shift | |
if [ $QUIET -gt 0 ]; | |
then | |
echo "$@" >&2 | |
fi | |
exit $EXITCODE | |
} | |
check_home() | |
{ | |
if [ "x$HOME" = "x" ]; | |
then | |
error_exit $ERR_HOME_PATH_UNKNOWN "Unable to find user home." | |
fi | |
return 0 | |
} | |
check_dest() | |
{ | |
if [ "x$DEST" = "x" -o ! -d "$DEST" ]; | |
then | |
error_exit $ERR_DEST_DIR_MISSING "Destination directory not found or not a directory: $DEST" | |
fi | |
return 0 | |
} | |
check_tools() | |
{ | |
if [ "x$MD5" = "x" ]; | |
then | |
error_exit $ERR_MISSING_TOOL "md5 not found" | |
fi | |
if [ "x$CURL" = "x" ]; | |
then | |
error_exit $ERR_MISSING_TOOL "curl not found" | |
fi | |
} | |
curl_fetch() | |
{ | |
local URL="$1" | |
local DEST="$2" | |
$CURL -s "$URL" 2>/dev/null > "$DEST" | |
local CURLEXIT=$? | |
if [ "x$CURLEXIT" != "x0" -o ! -f "$TMPFILE" ]; | |
then | |
error_exit $ERR_DOWNLOAD_FAILED "Failed ($CURLEXIT) to fetch $URL" | |
fi | |
return $CURLEXIT | |
} | |
checksums_match() | |
{ | |
local FILEA="$1" | |
local FILEB="$2" | |
if [ ! -f "$FILEA" -o ! -f "$FILEB" ]; | |
then | |
return 1 | |
fi | |
local CSA=$($MD5 -q "$FILEA") | |
local CSB=$($MD5 -q "$FILEB") | |
if [ "$CSA" != "$CSB" ]; | |
then | |
return 1 | |
fi | |
return 0 | |
} | |
install_script() | |
{ | |
local FROM="$1" | |
local TO="$2" | |
local BAK="$TO.prev" | |
if [ -f "$TO" ]; | |
then | |
cp "$TO" "$BAK" | |
fi | |
cp "$FROM" "$TO" | |
return 0 | |
} | |
update_or_install_script() | |
{ | |
local SCRIPT="$1" | |
local SRC="$URLSTEM/$SCRIPT" | |
local TMPFILE="/tmp/$SCRIPT" | |
local DESTFILE="$DEST/$SCRIPT" | |
curl_fetch "$SRC" "$TMPFILE" | |
if checksums_match "$TMPFILE" "$DESTFILE" | |
then | |
info "$SCRIPT is already up to date" >&2 | |
else | |
install_script "$TMPFILE" "$DESTFILE" | |
info "$SCRIPT was installed or updated" | |
fi | |
rm "$TMPFILE" | |
return 0 | |
} | |
check_home | |
check_dest | |
check_tools | |
for SCRIPT in $SCRIPTS; do update_or_install_script "$SCRIPT"; done | |
info "All done" | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Install and update shell helpers for git from contrib. Requires
md5
andcurl
.Use at your own discretion. Successfully tested on OS X 10.8.5.