@@ -150,7 +150,7 @@ function M.action(selected_option)
150150 tasks = {{ name = " - Build & run program → \" " .. entry_point .. " \" " ,
151151 cmd = " rm -f \" " .. output .. " \" || true" .. -- clean
152152 " && mkdir -p \" " .. output_dir .. " \" " .. -- mkdir
153- " && nuitka3 --no-pyi-file --remove-output --follow-imports" .. -- compile to machine code
153+ " && nuitka --no-pyi-file --remove-output --follow-imports" .. -- compile to machine code
154154 " --output-filename=\" " .. output .. " \" " ..
155155 " " .. arguments .. " " .. " \" " .. entry_point .. " \" " ..
156156 " && \" " .. output .. " \" " .. -- run
@@ -167,7 +167,7 @@ function M.action(selected_option)
167167 tasks = {{ name = " - Build program → \" " .. entry_point .. " \" " ,
168168 cmd = " rm -f \" " .. output .. " \" || true" .. -- clean
169169 " && mkdir -p \" " .. output_dir .. " \" " .. -- mkdir
170- " && nuitka3 --no-pyi-file --remove-output --follow-imports" .. -- compile to machine code
170+ " && nuitka --no-pyi-file --remove-output --follow-imports" .. -- compile to machine code
171171 " --output-filename=\" " .. output .. " \" " ..
172172 " " .. arguments .. " \" " .. entry_point .. " \" " ..
173173 " && echo \" " .. entry_point .. " \" " .. -- echo
@@ -206,7 +206,7 @@ function M.action(selected_option)
206206 task = { name = " - Build program → \" " .. entry_point .. " \" " ,
207207 cmd = " rm -f \" " .. output .. " \" || true" .. -- clean
208208 " && mkdir -p \" " .. output_dir .. " \" " .. -- mkdir
209- " && nuitka3 --no-pyi-file --remove-output --follow-imports" .. -- compile to machine code
209+ " && nuitka --no-pyi-file --remove-output --follow-imports" .. -- compile to machine code
210210 " --output-filename=\" " .. output .. " \" " ..
211211 " " .. arguments .. " \" " .. entry_point .. " \" " ..
212212 " && echo \" " .. entry_point .. " \" " .. -- echo
@@ -251,7 +251,7 @@ function M.action(selected_option)
251251 task = { name = " - Build program → \" " .. entry_point .. " \" " ,
252252 cmd = " rm -f \" " .. output .. " \" || true" .. -- clean
253253 " && mkdir -p \" " .. output_dir .. " \" " .. -- mkdir
254- " && nuitka3 --no-pyi-file --remove-output --follow-imports" .. -- compile to machine code
254+ " && nuitka --no-pyi-file --remove-output --follow-imports" .. -- compile to machine code
255255 " --output-filename=\" " .. output .. " \" " ..
256256 " " .. arguments .. " \" " .. entry_point .. " \" " ..
257257 " && echo \" " .. entry_point .. " \" " .. -- echo
0 commit comments