From e3a90e3acaed7028fdd41b3bb74b09fbd581b750 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Mon, 29 Jul 2024 11:12:01 -0600 Subject: [PATCH] Fix path --- docker/main/rootfs/usr/local/go2rtc/create_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/main/rootfs/usr/local/go2rtc/create_config.py b/docker/main/rootfs/usr/local/go2rtc/create_config.py index 3a969097c..4c8afd515 100644 --- a/docker/main/rootfs/usr/local/go2rtc/create_config.py +++ b/docker/main/rootfs/usr/local/go2rtc/create_config.py @@ -178,5 +178,5 @@ if config.get("birdseye", {}).get("restream", False): go2rtc_config["streams"] = {"birdseye": ffmpeg_cmd} # Write go2rtc_config to /dev/shm/go2rtc.yaml -with open("/workspace/frigate/go2rtc.yaml", "w") as f: +with open("/dev/shm/go2rtc.yaml", "w") as f: yaml.dump(go2rtc_config, f)