fix removing custom entrypoints
This commit is contained in:
parent
c71597af16
commit
2ef648df25
|
@ -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'
|
Loading…
Reference in New Issue