Switch to pwd so the scripts can work more reliably on other OSs

This commit is contained in:
md_5 2013-01-21 20:24:30 +11:00
parent 7dcc1ceac4
commit f440cb30ed
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
basedir=$(dirname $(readlink -f $0))
basedir=`pwd`
echo "Rebuilding Forked projects.... "
function applyPatch {

View File

@ -1,6 +1,6 @@
#!/bin/bash
basedir=$(dirname $(readlink -f $0))
basedir=`pwd`
echo "Rebuilding patch files from current fork state..."
function cleanupPatches {
cd $1

View File

@ -1,5 +1,5 @@
#!/bin/bash
basedir=$(dirname $(readlink -f $0))
basedir=`pwd`
function update {
cd $basedir/$1
git fetch && git reset --hard origin/master