From 856b9ade04aefbad6227180bcb3cbb1492f0e13d Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Fri, 29 Dec 2023 23:49:26 -0600 Subject: [PATCH] Prepend instead of append --- build.xsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.xsh b/build.xsh index 106e3e2..152d80a 100755 --- a/build.xsh +++ b/build.xsh @@ -1,7 +1,7 @@ #!/usr/bin/env xonsh from pathlib import Path import sys -sys.path.append(str(Path(__file__).parent / "lib")) +sys.path.insert(0, str(Path(__file__).parent / "lib")) from support import Support, BASE import time import json