Sync RTA Attempt to Fix Sensor Regex Error (#4213)

This commit is contained in:
protections machine
2024-10-29 04:20:12 +11:00
committed by GitHub
parent 5d2940fa7c
commit 1278c27967
26 changed files with 58 additions and 42 deletions
+2 -1
View File
@@ -4,6 +4,7 @@
# 2.0.
import sys
from . import RtaMetadata, common
metadata = RtaMetadata(
@@ -29,7 +30,7 @@ def main() -> None:
common.log("Granting execute permissions...")
common.execute(["chmod", "+x", masquerade])
commands = [masquerade, '-e', 'spawnsh', 'listen']
commands = [masquerade, "-e", "spawnsh", "listen"]
common.execute([*commands], timeout=5, kill=True)
common.log("Cleaning...")
common.remove_file(masquerade)