HiI am trying to run a command for deployment from my ipl file but it's not running. Below is the code for the command:$deploy_cmd = TeamSite::Config::iwgethome()."/iw-perl/bin/iwperl $OD_DIR/solutions/perl/iwodstart.ipl wflDotcomDeploy -k area=$branchpath -k filelist=$filesListPath -k useNode=$strStagingNode -k targetArea=$targetAreaDev";$deploy_cmd =~s/\\/\//g;$deploy_cmd = `$deploy_cmd`;when I print the finally generated command in a txt file and run that command through command prompt it is giving me perfect output.Please Advice.ThanksHarry
$deploy_cmd = TeamSite::Config::iwgethome()."/iw-perl/bin/iwperl $OD_DIR/solutions/perl/iwodstart.ipl ...
$deploy_cmd = $OD_DIR/bin/iwodcmd start ...
$deploy_cmd = `$deploy_cmd`;
my $results = qx($deploy_cmd 2>&1);my $status = $? >>8;