From c62cc5a88f547d363861381b4c26a2bc76362cd1 Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Fri, 31 Jan 2014 09:41:53 -0500 Subject: [PATCH] devscript: full path to pwd --- developer/bin/develop_brew_cask | 2 +- developer/bin/production_brew_cask | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/developer/bin/develop_brew_cask b/developer/bin/develop_brew_cask index 513e7b4934..577a1178d5 100755 --- a/developer/bin/develop_brew_cask +++ b/developer/bin/develop_brew_cask @@ -49,7 +49,7 @@ _develop_brew_cask () { # initialization cd_to_project_root - local git_root="$(pwd)" + local git_root="$(/bin/pwd)" local brew_prefix="$(brew --prefix)" local cellar_dir="$brew_prefix/Cellar/brew-cask" local version_dir="$(/bin/ls "$cellar_dir/" | /usr/bin/sort | /usr/bin/tail -1)" diff --git a/developer/bin/production_brew_cask b/developer/bin/production_brew_cask index 2f97386d93..60d722a1ae 100755 --- a/developer/bin/production_brew_cask +++ b/developer/bin/production_brew_cask @@ -46,7 +46,7 @@ _production_brew_cask () { # initialization cd_to_project_root - local git_root="$(pwd)" + local git_root="$(/bin/pwd)" local brew_prefix="$(brew --prefix)" local cellar_dir="$brew_prefix/Cellar/brew-cask" local version_dir="$(/bin/ls "$cellar_dir/" | /usr/bin/sort | /usr/bin/tail -1)"