Spaces:
Runtime error
Runtime error
change build location?
Browse files- app.py +2 -2
- build/my-languages.exp +0 -0
- build/my-languages.lib +0 -0
- build/my-languages.so +0 -0
app.py
CHANGED
@@ -155,8 +155,8 @@ num_samples = len(all_single_passes)
|
|
155 |
|
156 |
import tree_sitter
|
157 |
from tree_sitter import Language, Parser
|
158 |
-
Language.build_library("build/my-languages.so", ['tree-sitter-glsl'])
|
159 |
-
GLSL_LANGUAGE = Language('build/my-languages.so', 'glsl')
|
160 |
parser = Parser()
|
161 |
parser.set_language(GLSL_LANGUAGE)
|
162 |
|
|
|
155 |
|
156 |
import tree_sitter
|
157 |
from tree_sitter import Language, Parser
|
158 |
+
Language.build_library("./build/my-languages.so", ['tree-sitter-glsl'])
|
159 |
+
GLSL_LANGUAGE = Language('./build/my-languages.so', 'glsl')
|
160 |
parser = Parser()
|
161 |
parser.set_language(GLSL_LANGUAGE)
|
162 |
|
build/my-languages.exp
DELETED
Binary file (744 Bytes)
|
|
build/my-languages.lib
DELETED
Binary file (1.8 kB)
|
|
build/my-languages.so
DELETED
Binary file (631 kB)
|
|