@@ -150,7 +150,7 @@ function M.action(selected_option)
150
150
tasks = {{ name = " - Build & run program → \" " .. entry_point .. " \" " ,
151
151
cmd = " rm -f \" " .. output .. " \" || true" .. -- clean
152
152
" && 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
154
154
" --output-filename=\" " .. output .. " \" " ..
155
155
" " .. arguments .. " " .. " \" " .. entry_point .. " \" " ..
156
156
" && \" " .. output .. " \" " .. -- run
@@ -167,7 +167,7 @@ function M.action(selected_option)
167
167
tasks = {{ name = " - Build program → \" " .. entry_point .. " \" " ,
168
168
cmd = " rm -f \" " .. output .. " \" || true" .. -- clean
169
169
" && 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
171
171
" --output-filename=\" " .. output .. " \" " ..
172
172
" " .. arguments .. " \" " .. entry_point .. " \" " ..
173
173
" && echo \" " .. entry_point .. " \" " .. -- echo
@@ -206,7 +206,7 @@ function M.action(selected_option)
206
206
task = { name = " - Build program → \" " .. entry_point .. " \" " ,
207
207
cmd = " rm -f \" " .. output .. " \" || true" .. -- clean
208
208
" && 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
210
210
" --output-filename=\" " .. output .. " \" " ..
211
211
" " .. arguments .. " \" " .. entry_point .. " \" " ..
212
212
" && echo \" " .. entry_point .. " \" " .. -- echo
@@ -251,7 +251,7 @@ function M.action(selected_option)
251
251
task = { name = " - Build program → \" " .. entry_point .. " \" " ,
252
252
cmd = " rm -f \" " .. output .. " \" || true" .. -- clean
253
253
" && 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
255
255
" --output-filename=\" " .. output .. " \" " ..
256
256
" " .. arguments .. " \" " .. entry_point .. " \" " ..
257
257
" && echo \" " .. entry_point .. " \" " .. -- echo
0 commit comments