diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2023-11-02 11:12:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-02 11:12:38 -0700 |
commit | e0d97d264f83d45472e6cdd1051893db1083eefb (patch) | |
tree | d51b7fbbb715151ffdd4b95c3a176426ac9a2a54 /scripts/gen_eval_files.lua | |
parent | 363e029e7ae295d2f9c711b9387da43aaf692b9a (diff) | |
download | rneovim-e0d97d264f83d45472e6cdd1051893db1083eefb.tar.gz rneovim-e0d97d264f83d45472e6cdd1051893db1083eefb.tar.bz2 rneovim-e0d97d264f83d45472e6cdd1051893db1083eefb.zip |
build: use built nvim artifact to generate eval files (#25875)
In cases where the generated files depend on changes to Nvim itself,
generating the files with an older version of Nvim will fail because
those changes are not present in the older version.
For example, if a new option is added then the generator script should
be run with the version of Nvim that contains the new option, or else
the generation will fail.
Co-authored-by: dundargoc <gocdundar@gmail.com>
Diffstat (limited to 'scripts/gen_eval_files.lua')
-rwxr-xr-x | scripts/gen_eval_files.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/gen_eval_files.lua b/scripts/gen_eval_files.lua index bf243e96fd..714358e488 100755 --- a/scripts/gen_eval_files.lua +++ b/scripts/gen_eval_files.lua @@ -1,4 +1,3 @@ -#!/usr/bin/env -S nvim -l -- Generator for various vimdoc and Lua type files local DEP_API_METADATA = 'build/api_metadata.mpack' |