@@ -113,7 +113,7 @@ local function copyConfigSettings(sourcePath, luarc)
113113 local config = json .read (sourcePath )
114114
115115 if not json .isObject (config ) then
116- error (" [BuildError]: root of " .. sourcePath .. " is not an object. File an issue with the addon developer." )
116+ error (" [BuildError]: root of " .. sourcePath .. " is not an object. Submit an issue to the addon developer." )
117117 end
118118 --- @cast config { [string] : any }
119119
@@ -122,7 +122,7 @@ local function copyConfigSettings(sourcePath, luarc)
122122 error (
123123 " [BuildError]: key 'settings' of "
124124 .. sourcePath
125- .. " is not an object. File an issue with the addon developer."
125+ .. " is not an object. Submit an issue to the addon developer."
126126 )
127127 end
128128 --- @cast settings { [string] : any }
142142local function copyBuildSettings (settings , luarc )
143143 settings = json .coerce (settings )
144144 if not json .isObject (settings ) then
145- error (" [BuildError]: 'rockspec.build.settings' is not an object. File an issue with the addon developer." )
145+ error (" [BuildError]: 'rockspec.build.settings' is not an object. Submit an issue to the addon developer." )
146146 end
147147
148148 log .info (" Merging 'rockspec.build.settings' into .luarc.json" )
@@ -373,7 +373,7 @@ M.installAddon = installAddon
373373
374374local CRASH_MESSAGE = [[
375375An error occurred while running the lls-addon backend.
376- Please file an issue at https://github.com/LuaLS/luarocks-build-addon/issues
376+ Please submit an issue at https://github.com/LuaLS/luarocks-build-addon/issues
377377]]
378378
379379--- @param rockspec luarocks.rockspec
0 commit comments