diff options
author | minskim <minskim@pkgsrc.org> | 2009-04-23 00:15:53 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2009-04-23 00:15:53 +0000 |
commit | 9144f40b0d27b8e56323ed2f8bed0f28ce9be182 (patch) | |
tree | a12fdd377abd81028ec8a016ac8f4a016c2279c8 /bootstrap | |
parent | f867deebc965823c9e2455338ccf2305bf7f151d (diff) | |
download | pkgsrc-9144f40b0d27b8e56323ed2f8bed0f28ce9be182.tar.gz |
Fix a square bracket mismatch.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap/bootstrap | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap index 914226b2d33..4c2f7867cf0 100755 --- a/bootstrap/bootstrap +++ b/bootstrap/bootstrap @@ -1,6 +1,6 @@ #! /bin/sh -# $NetBSD: bootstrap,v 1.143 2009/04/21 14:21:10 joerg Exp $ +# $NetBSD: bootstrap,v 1.144 2009/04/23 00:15:53 minskim Exp $ # # # Copyright (c) 2001-2002 Alistair G. Crooks. All rights reserved. @@ -692,7 +692,7 @@ check_prog sedprog sed check_prog shprog sh check_prog whoamiprog whoami -if [ -d "${wrkdir}" ] || [ -f "${wrkdir}"; then +if [ -d "${wrkdir}" ] || [ -f "${wrkdir}" ]; then echo "\"${wrkdir}\" already exists, please remove it or use --workdir."; exit 1 fi |