From e8f465302534d93aa3c1850d47cde10217779b96 Mon Sep 17 00:00:00 2001 From: md_5 Date: Mon, 14 Apr 2014 21:01:27 +1000 Subject: [PATCH] Set shell prompt to $ when running the patch scripts, helps with speed on windows. --- applyPatches.sh | 1 + rebuildPatches.sh | 3 +++ upstreamMerge.sh | 4 ++++ 3 files changed, 8 insertions(+) diff --git a/applyPatches.sh b/applyPatches.sh index 4308d9f8d..32585f94b 100755 --- a/applyPatches.sh +++ b/applyPatches.sh @@ -1,5 +1,6 @@ #!/bin/bash +PS1="$" basedir=`pwd` echo "Rebuilding Forked projects.... " diff --git a/rebuildPatches.sh b/rebuildPatches.sh index d56ed82c2..6785d242e 100755 --- a/rebuildPatches.sh +++ b/rebuildPatches.sh @@ -1,7 +1,9 @@ #!/bin/bash +PS1="$" basedir=`pwd` echo "Rebuilding patch files from current fork state..." + function cleanupPatches { cd "$1" for patch in *.patch; do @@ -20,6 +22,7 @@ function cleanupPatches { fi done } + function savePatches { what=$1 target=$2 diff --git a/upstreamMerge.sh b/upstreamMerge.sh index 6d71e6004..c95e357a2 100755 --- a/upstreamMerge.sh +++ b/upstreamMerge.sh @@ -1,10 +1,14 @@ #!/bin/bash + +PS1="$" basedir=`pwd` + function update { cd "$basedir/$1" git fetch && git reset --hard origin/master cd ../ git add $1 } + update Bukkit update CraftBukkit