mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Quote paths
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@16725 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7105ee031e
commit
ef8b3f5dd5
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
Wed May 14 16:19:02 2003 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
* transform_paths.sh: Quote paths.
|
||||
|
||||
Wed May 14 16:15:16 2003 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
* debugapp.in: Added more strict quoting of paths everywhere.
|
||||
|
|
|
@ -28,10 +28,10 @@ if [ -z "$*" ]; then
|
|||
exit 0
|
||||
fi
|
||||
|
||||
curdir=`pwd`
|
||||
curdir="`pwd`"
|
||||
|
||||
for dir in $@; do
|
||||
if [ -d $curdir/$dir ]; then
|
||||
if [ -d "$curdir/$dir" ]; then
|
||||
echo "$curdir/$dir"
|
||||
else
|
||||
echo "$dir"
|
||||
|
|
Loading…
Reference in a new issue