mirror of
https://github.com/dragonlock2/matthewtran.com.git
synced 2025-10-11 20:17:54 +00:00
15 lines
353 B
Python
Executable File
15 lines
353 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import subprocess
|
|
|
|
if __name__ == "__main__":
|
|
subprocess.run(["zip", "-FS", "-r", "data.zip",
|
|
"minecraft/worlds",
|
|
"minecraft_bedrock/worlds",
|
|
"terraria/worlds",
|
|
"terraria/password.txt",
|
|
"website/gitea",
|
|
"website/letsencrypt",
|
|
"website/sendgrid.key",
|
|
], check=True)
|