File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 72
72
if ! [ -x " $( command -v cloudsmith) " ]; then
73
73
echo ' Install cloudsmith cli' >&2
74
74
if command -v pip3 & > /dev/null; then
75
- pip3 install --upgrade cloudsmith-cli
75
+ pip3 install --no-cache-dir -- upgrade cloudsmith-cli
76
76
elif command -v pip & > /dev/null; then
77
- pip install --upgrade cloudsmith-cli
77
+ pip install --no-cache-dir -- upgrade cloudsmith-cli
78
78
else
79
79
echo " Could not install cloudsmith cli. Reason: pip3/pip is not installed"
80
80
exit 2
Original file line number Diff line number Diff line change @@ -60,9 +60,9 @@ export PATH="$LOCAL_TOOLS_PATH:$PATH"
60
60
if ! [ -x " $( command -v cloudsmith) " ]; then
61
61
echo ' Install cloudsmith cli' >&2
62
62
if command -v pip3 & > /dev/null; then
63
- pip3 install --upgrade cloudsmith-cli
63
+ pip3 install --no-cache-dir -- upgrade cloudsmith-cli
64
64
elif command -v pip & > /dev/null; then
65
- pip install --upgrade cloudsmith-cli
65
+ pip install --no-cache-dir -- upgrade cloudsmith-cli
66
66
else
67
67
echo " Could not install cloudsmith cli. Reason: pip3/pip is not installed"
68
68
exit 2
You can’t perform that action at this time.
0 commit comments