From 5ee383d6efd583a33e0c9c18c1d2035023c7105b Mon Sep 17 00:00:00 2001 From: Orsiris de Jong Date: Wed, 29 Mar 2023 23:49:17 +0200 Subject: [PATCH] Fix typo --- bin/compile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/compile.py b/bin/compile.py index beaf664..8f702be 100644 --- a/bin/compile.py +++ b/bin/compile.py @@ -235,7 +235,7 @@ def compile(arch, audience, no_gui=False): # Stupid fix for synology RS816 where /tmp is mounted with `noexec`. if "arm" in arch: - NUITKA_OPTIONS += " --onefile-temp-spec=/var/tmp" + NUITKA_OPTIONS += " --onefile-tempdir-spec=/var/tmp" if no_gui: NUITKA_OPTIONS += " --plugin-disable=tk-inter --nofollow-import-to=PySimpleGUI"