From 3bf15f3cc904420631959d09065810c28353ffa1 Mon Sep 17 00:00:00 2001 From: Vhyrro Date: Sun, 14 Apr 2024 13:25:32 +0200 Subject: [PATCH] fix: put variables declaration in the right place --- .github/workflows/tree-sitter-norg.rockspec.template | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tree-sitter-norg.rockspec.template b/.github/workflows/tree-sitter-norg.rockspec.template index db5613ec..f27d41b6 100644 --- a/.github/workflows/tree-sitter-norg.rockspec.template +++ b/.github/workflows/tree-sitter-norg.rockspec.template @@ -24,12 +24,11 @@ source = { dir = '$repo_name-' .. '$archive_dir_suffix', } -variables = { - LIBFLAG = "-std=c++11", -} - build = { type = "treesitter-parser", lang = "norg", sources = { "src/parser.c", "src/scanner.cc" }, + variables = { + LIBFLAG = "-std=c++11", + }, }