Return-Path: Mailing-List: contact user-help@ant.apache.org; run by ezmlm Delivered-To: mailing list user@ant.apache.org Received: (qmail 21790 invoked from network); 17 Apr 2003 21:27:08 -0000 Received: from plmler3.mail.eds.com (199.228.142.73) by daedalus.apache.org with SMTP; 17 Apr 2003 21:27:08 -0000 Received: from plmlir4.mail.eds.com (plmlir4-2.mail.eds.com [199.228.142.134]) by plmler3.mail.eds.com (8.11.6p2/8.11.6) with ESMTP id h3HLREF22928 for ; Thu, 17 Apr 2003 16:27:14 -0500 Received: from plmlir4.mail.eds.com (localhost [127.0.0.1]) by plmlir4.mail.eds.com (8.11.6p2/8.11.6) with ESMTP id h3HLRDM14434 for ; Thu, 17 Apr 2003 16:27:13 -0500 (CDT) Received: from usplm101.exsc01.exch.eds.com (USPLM101.txpln.us.eds.com [198.132.135.14]) by plmlir4.mail.eds.com (8.11.6p2/8.11.6) with ESMTP id h3HLRC114425 for ; Thu, 17 Apr 2003 16:27:12 -0500 (CDT) Received: by USPLM101.txpln.us.eds.com with Internet Mail Service (5.5.2656.59) id ; Thu, 17 Apr 2003 16:27:10 -0500 Message-ID: <7A57F750AF65D411949C00508BDFD8181AA98810@USPLM202> From: "Lopez, William" To: Ant Users List Subject: Property and if question Date: Thu, 17 Apr 2003 16:27:02 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2656.59) Content-Type: text/plain X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Sorry if this is basic but I can not get the if to work. My cmd line looks like this: ant -verbose -Denvnt="Integration" -Dcopy_int="INT" -Dst_time="9 am CT" >> backup_Test_debug.log 2>&1 Also tried: ant -verbose -Denvnt="Integration" -Dcopy_int="true" -Dst_time="9 am CT" >> backup_Test_debug.log 2>&1 ...the target defined: ... ...but the target I intended to run never does: copyINT: Skipped because property 'env.copy_int' not set. <-- intended target copySYS: Skipped because property 'env.copy_sys' not set. copyUAT: Skipped because property 'env.copy_uat' not set. Thanks, -Will