Skip to content

Commit

Permalink
Update python.lua → Nuitka3 is now now just nuitka
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeioth authored Sep 23, 2024
1 parent e889774 commit ba9c511
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lua/compiler/languages/python.lua
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ function M.action(selected_option)
tasks = {{ name = "- Build & run program → \"" .. entry_point .. "\"",
cmd = "rm -f \"" .. output .. "\" || true" .. -- clean
" && mkdir -p \"" .. output_dir .. "\"" .. -- mkdir
" && nuitka3 --no-pyi-file --remove-output --follow-imports" .. -- compile to machine code
" && nuitka --no-pyi-file --remove-output --follow-imports" .. -- compile to machine code
" --output-filename=\"" .. output .. "\"" ..
" " .. arguments .. " " .. "\"" .. entry_point .. "\"" ..
" && \"" .. output .. "\"" .. -- run
Expand All @@ -167,7 +167,7 @@ function M.action(selected_option)
tasks = {{ name = "- Build program → \"" .. entry_point .. "\"",
cmd = "rm -f \"" .. output .. "\" || true" .. -- clean
" && mkdir -p \"" .. output_dir .. "\"" .. -- mkdir
" && nuitka3 --no-pyi-file --remove-output --follow-imports" .. -- compile to machine code
" && nuitka --no-pyi-file --remove-output --follow-imports" .. -- compile to machine code
" --output-filename=\"" .. output .. "\"" ..
" " .. arguments .. " \"" .. entry_point .. "\"" ..
" && echo \"" .. entry_point .. "\"" .. -- echo
Expand Down Expand Up @@ -206,7 +206,7 @@ function M.action(selected_option)
task = { name = "- Build program → \"" .. entry_point .. "\"",
cmd = "rm -f \"" .. output .. "\" || true" .. -- clean
" && mkdir -p \"" .. output_dir .. "\"" .. -- mkdir
" && nuitka3 --no-pyi-file --remove-output --follow-imports" .. -- compile to machine code
" && nuitka --no-pyi-file --remove-output --follow-imports" .. -- compile to machine code
" --output-filename=\"" .. output .. "\"" ..
" " .. arguments .. " \"" .. entry_point .. "\"" ..
" && echo \"" .. entry_point .. "\"" .. -- echo
Expand Down Expand Up @@ -251,7 +251,7 @@ function M.action(selected_option)
task = { name = "- Build program → \"" .. entry_point .. "\"",
cmd = "rm -f \"" .. output .. "\" || true" .. -- clean
" && mkdir -p \"" .. output_dir .. "\"" .. -- mkdir
" && nuitka3 --no-pyi-file --remove-output --follow-imports" .. -- compile to machine code
" && nuitka --no-pyi-file --remove-output --follow-imports" .. -- compile to machine code
" --output-filename=\"" .. output .. "\"" ..
" " .. arguments .. " \"" .. entry_point .. "\"" ..
" && echo \"" .. entry_point .. "\"" .. -- echo
Expand Down

0 comments on commit ba9c511

Please sign in to comment.