We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03030da commit a5b769eCopy full SHA for a5b769e
web/client/codechecker_client/cli/store.py
@@ -921,9 +921,11 @@ def main(args):
921
port,
922
product_name=product_name)
923
924
+ # If the --temp_dir argument is specified set use that,
925
+ # else use the analyze result folder
926
temp_dir_path: str = args.temp_dir if args.temp_dir else args.input[0]
927
if not os.access(temp_dir_path, os.W_OK):
- # Folder not writeable fallback to /tmp/
928
+ # If the specified folder isn't writeable fallback to /tmp/
929
LOG.debug("'%s' is readonly, falling back to /tmp", temp_dir_path)
930
temp_dir_path = "/tmp"
931
try:
0 commit comments