Browse Source

Allow ant script to gracefully handle spaces in $HOME variable

PR: 4395
Submitted by: rick_price@email.com


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269823 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 23 years ago
parent
commit
24f9888af6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/script/ant

+ 1
- 1
src/script/ant View File

@@ -1,6 +1,6 @@
#! /bin/sh

if [ -f $HOME/.antrc ] ; then
if [ -f "$HOME/.antrc" ] ; then
. $HOME/.antrc
fi



Loading…
Cancel
Save