From f8ae2a9cce7ba347c59e6ee94f4d81d813e85b17 Mon Sep 17 00:00:00 2001 From: ATATC Date: Thu, 9 May 2024 15:04:58 -0400 Subject: [PATCH] Bug fixed: ineffective environment variable overwriting. (#130) --- scripts/obs-run.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/obs-run.sh b/scripts/obs-run.sh index 269788a2..26adac26 100644 --- a/scripts/obs-run.sh +++ b/scripts/obs-run.sh @@ -19,5 +19,4 @@ execute_root() { execute "sudo" "$@" } -export MESA_GL_VERSION_OVERRIDE=3.3 -execute_root "obs" \ No newline at end of file +execute_root "MESA_GL_VERSION_OVERRIDE=3.3" "obs" \ No newline at end of file