Skip to content

Commit

Permalink
Replace pwd by $PWDCMD in test_nczarr.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
mjwoods committed Sep 4, 2021
1 parent fd0e4b2 commit 19fee20
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nczarr_test/test_nczarr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,12 @@ sclean() {
}

# Make sure execdir and srcdir absolute paths are available
WD=`pwd`
cd $srcdir ; abs_srcdir=`pwd` ; cd $WD
cd $execdir ; abs_execdir=`pwd` ; cd $WD
WD=`$PWDCMD`
cd $srcdir ; abs_srcdir=`$PWDCMD` ; cd $WD
cd $execdir ; abs_execdir=`$PWDCMD` ; cd $WD

# Clear out any existing .rc files
WD=`pwd`
WD=`$PWDCMD`
if test "x$NCAUTH_HOMETEST" != x ; then RCHOME=1; fi

resetrc() {
Expand Down

0 comments on commit 19fee20

Please sign in to comment.