diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-02-06 10:29:07 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-02-06 10:29:07 -0500 |
commit | 9c34f9d1676e7f835557e0d188d6382b49a330e0 (patch) | |
tree | 765cf1a4d38977256e027fdf488b7b086e27bc78 | |
parent | 4e451eff51325cb0f523391bdede2aa0dec8517a (diff) | |
download | stasis-9c34f9d1676e7f835557e0d188d6382b49a330e0.tar.gz |
Tell the user we are succeeding/failing to configure JFrog CLI on their behalf
-rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -258,9 +258,9 @@ int main(int argc, char *argv[], char *arge[]) { ctx.meta.python = strdup(python_override_version); } - + msg(OMC_MSG_L2, "Configuring JFrog CLI\n"); if (delivery_init_artifactory(&ctx)) { - msg(OMC_MSG_ERROR | OMC_MSG_L1, "FAILED\n"); + msg(OMC_MSG_ERROR | OMC_MSG_L2, "JFrog CLI configuration failed\n"); exit(1); } |