Draff 9ead0e0218
All checks were successful
CI / Prepare job (push) Successful in 3s
CI / Build multisrc modules (push) Successful in 2m27s
CI / Build individual modules (push) Successful in 37s
CI / Publish repo (push) Successful in 44s
(hopefully) un fucky my other wucky
2024-02-04 02:07:54 +00:00

16 lines
358 B
Python
Executable File

from pathlib import Path
import shutil
REPO_APK_DIR = Path("repo/apk")
try:
shutil.rmtree(REPO_APK_DIR)
except FileNotFoundError:
pass
REPO_APK_DIR.mkdir(parents=True, exist_ok=True)
for apk in (Path.home() / "apk-artifacts").glob("**/*.apk"):
apk_name = apk.name.replace("-release.apk", ".apk")
shutil.move(apk, REPO_APK_DIR / apk_name)