After reading JFrogCLI-EnvironmentVariables
I would like to set JFROG_CLI_OFFER_CONFIG
to false, but I have no idea.
I have tried jfrog config JFROG_CLI_OFFER_CONFIG=false
, doesn't work.
if you're on Linux or macOS you can do
CI=true jfrog rt ...
There is a sample here
The other option you have on Linux and macOS is
export CI=true
jfrog rt ...
if you're on Windows you can do
set CI=true
jfrog rt ...