diff options
Diffstat (limited to 'solenv')
-rwxr-xr-x | solenv/bin/write_classpath.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/write_classpath.sh b/solenv/bin/write_classpath.sh index 29aeecb81abe..4b9fd6bcbbf4 100755 --- a/solenv/bin/write_classpath.sh +++ b/solenv/bin/write_classpath.sh @@ -7,7 +7,7 @@ base='Class-Path: ' while [ "${1}" != "" ]; do p="$1" shift - echo "$base $1" >> $dest + echo "$base $p" >> $dest base=' ' done |