updated for python 3.14 and chmod
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
FROM python:3.7
|
FROM python:3.14
|
||||||
|
|
||||||
VOLUME ["/in", "/out"]
|
VOLUME ["/in", "/out"]
|
||||||
|
|
||||||
|
|||||||
@@ -46,6 +46,7 @@ def _main():
|
|||||||
continue
|
continue
|
||||||
tpath = fpath.replace(config["dirs"]["from"], config["dirs"]["to"])
|
tpath = fpath.replace(config["dirs"]["from"], config["dirs"]["to"])
|
||||||
shutil.move(fpath, tpath)
|
shutil.move(fpath, tpath)
|
||||||
|
os.chmod(tpath, 0o666)
|
||||||
log(f"moved {fpath}")
|
log(f"moved {fpath}")
|
||||||
|
|
||||||
for filename in completed:
|
for filename in completed:
|
||||||
|
|||||||
Reference in New Issue
Block a user