diff options
author | Pavan Deolasee | 2016-06-14 08:38:58 +0000 |
---|---|---|
committer | Pavan Deolasee | 2016-10-18 10:05:08 +0000 |
commit | fa950a3ae56db146ae7cb77f9663a7eab39196b6 (patch) | |
tree | 0eca9519f2a453dc6ce5721fed076b42b5234590 | |
parent | 1eee97d47ffedabcc7928187814a2a5492dced48 (diff) |
Remove an unintentional "set -x" command slipped in the previous commit
-rw-r--r-- | contrib/pgxc_ctl/gtm_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pgxc_ctl/gtm_cmd.c b/contrib/pgxc_ctl/gtm_cmd.c index 8371e101c0..a1617d8538 100644 --- a/contrib/pgxc_ctl/gtm_cmd.c +++ b/contrib/pgxc_ctl/gtm_cmd.c @@ -58,7 +58,7 @@ cmd_t *prepare_initGtmMaster(bool stop) remoteDirCheck[0] = '\0'; if (!forceInit) { - sprintf(remoteDirCheck, "set -x; if [ '$(ls -A %s 2> /dev/null)' ]; then echo 'ERROR: " + sprintf(remoteDirCheck, "if [ '$(ls -A %s 2> /dev/null)' ]; then echo 'ERROR: " "target directory (%s) exists and not empty. " "Skip GTM initilialization'; exit; fi;", sval(VAR_gtmMasterDir), |