Skip to content

Commit e5d5cb7

Browse files
authored
Merge pull request JuliaPackaging#127 from iamed2/patch-1
Use rm instead of rmdir (because it exists)
2 parents 12c0531 + 6df1665 commit e5d5cb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wizard/interactive_build.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ function step5_internal(state::WizardState, platform::Platform, message)
362362
continue
363363
end
364364
elseif choice == 2
365-
rmdir(build_path; recursive = true)
365+
rm(build_path; force = true, recursive = true)
366366
mkpath(build_path)
367367
prefix, ur = setup_workspace(
368368
build_path,

0 commit comments

Comments
 (0)