diff --git a/CHANGELOG.md b/CHANGELOG.md index e30bc943f..d57e3a675 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - Bugfix for lht functions of collections.c to avoid memory issues on negative keys - Added a new build target, 'configmgr-rexx', which builds a version of configmgr that can be used within rexx scripts. +- Bugfix the help message on configmgr ## `2.2.0` diff --git a/build/configmgr.proj.env b/build/configmgr.proj.env index e14b41f06..b24079b03 100644 --- a/build/configmgr.proj.env +++ b/build/configmgr.proj.env @@ -1,5 +1,5 @@ PROJECT="configmgr" -VERSION=0.3.0 +VERSION=0.4.0 DEPS="QUICKJS LIBYAML" QUICKJS="quickjs" diff --git a/c/configmgr.c b/c/configmgr.c index 6e3c64171..0fd9ed130 100644 --- a/c/configmgr.c +++ b/c/configmgr.c @@ -1223,13 +1223,14 @@ static void showHelp(FILE *out){ fprintf(out," -w : workspace directory\n"); fprintf(out," -c : compact output for jq and extract commands\n"); fprintf(out," -r : raw string output for jq and extract commands\n"); + fprintf(out," -m : member name to find the zowe config in each PARMLIBs specified\n"); fprintf(out," -p : list of colon-separated configPathElements - see below\n"); fprintf(out," commands:\n"); fprintf(out," extract : prints value to stdout\n"); fprintf(out," validate : just loads and validates merged configuration\n"); fprintf(out," env : prints merged configuration to a file as a list of environment vars\n"); fprintf(out," configPathElement: \n"); - fprintf(out," LIB(datasetName) - a library that can contain config data\n"); + fprintf(out," PARMLIB(datasetName) - a library that can contain config data\n"); fprintf(out," FILE(filename) - the name of a file containing Yaml\n"); fprintf(out," PARMLIBS - all PARMLIBS that are defined to this running Program in ZOS, nothing if not on ZOS\n"); }