Skip to content

Commit

Permalink
🐛fix(swift): Fixed arguments.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeioth committed Feb 2, 2024
1 parent 596586b commit 84ba4ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/compiler/languages/swift.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function M.action(selected_option)
local files = utils.find_files_to_compile(entry_point, "*.swift") -- *.swift files under entry_point_dir (recursively)
local output_dir = utils.os_path(vim.fn.getcwd() .. "/bin/") -- working_directory/bin/
local output = utils.os_path(vim.fn.getcwd() .. "/bin/program") -- working_directory/bin/program
local arguments = "-warn-swift3-objc-inference -g" -- arguments can be overriden in .solution
local arguments = "-warn-swift3-objc-inference-minimal -g" -- arguments can be overriden in .solution
local final_message = "--task finished--"


Expand Down

0 comments on commit 84ba4ed

Please sign in to comment.