Update path of generated dbscheme

This commit is contained in:
Arthur Baars
2020-10-28 13:32:57 +01:00
parent 88acbc883c
commit 28a99cfe83
2 changed files with 2 additions and 2 deletions

View File

@@ -45,7 +45,7 @@ jobs:
if: ${{ matrix.os == 'ubuntu-latest' }}
with:
name: ruby.dbscheme
path: ruby.dbscheme
path: ql/src/ruby.dbscheme
- uses: actions/upload-artifact@v2
if: ${{ matrix.os == 'ubuntu-latest' }}
with:

View File

@@ -286,7 +286,7 @@ fn main() {
let ruby = Language {
name: "Ruby".to_string(),
node_types: tree_sitter_ruby::NODE_TYPES,
dbscheme_path: PathBuf::from("ruby.dbscheme"),
dbscheme_path: PathBuf::from("ql/src/ruby.dbscheme"),
ql_library_path: PathBuf::from("ruby_ast.qll"),
};
match node_types::read_node_types_str(&ruby.node_types) {