Fix minimal/do and tests when built in a path containing spaces.
Basically all just missing quotes around shell strings that use $PWD. Most paths inside a project, since redo uses relative paths, only need to worry when project-internal directories or filenames have spaces in them. Reported-by: Jeff Stearns <jeff.stearns@gmail.com>
This commit is contained in:
parent
539a26d264
commit
474e12eed8
6 changed files with 19 additions and 17 deletions
|
|
@ -25,7 +25,7 @@ for sh in dash /usr/xpg4/bin/sh ash posh mksh ksh ksh88 ksh93 pdksh \
|
|||
SH=$PWD/$1.new/sh
|
||||
|
||||
set +e
|
||||
( cd ../t && $SH shelltest.od ) >shelltest.tmp 2>&1
|
||||
( cd ../t && "$SH" shelltest.od ) >shelltest.tmp 2>&1
|
||||
RV=$?
|
||||
set -e
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue