From d628f56821a94521727aed56e0943459a30de6a5 Mon Sep 17 00:00:00 2001 From: Zardshard <0azrune6@zard.anonaddy.com> Date: Wed, 27 Sep 2023 01:33:00 -0400 Subject: [PATCH] Fix build script directory traversal Previously, cd would throw an error about not being able to find a directory. --- build.xsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.xsh b/build.xsh index df6f3fb..0f7f488 100644 --- a/build.xsh +++ b/build.xsh @@ -24,5 +24,5 @@ for dir in files.keys(): cd @('../../bin/'+ARCH+'/'+dir[0]) for file in files[dir]: ln -s @(dir[1]+'.so') @(file+'.so') - cd .. + cd ../../../bindings cd ..