fix removing custom entrypoints

This commit is contained in:
clore 2024-05-22 00:35:33 +00:00
parent c71597af16
commit 2ef648df25
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ def cache_entrypoints(containers):
else: else:
valid_conf.append(True) valid_conf.append(True)
for remaining_file in entrypoint_files: # We can remove files that are not needed anymore for remaining_file in entrypoint_files: # We can remove files that are not needed anymore
os.remove(remaining_file) os.remove(os.path.join(config.entrypoints_folder,remaining_file))
return valid_conf return valid_conf
except Exception as e: except Exception as e:
return 'e' return 'e'