Skip to content

Commit

Permalink
fix shim name on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferC committed Jan 24, 2025
1 parent 830ecdc commit f341c20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Apps/Apps.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ app_context() = Context(env=EnvCache(joinpath(app_env_folder(), "Project.toml"))


function rm_shim(name; kwargs...)
Base.rm(joinpath(julia_bin_path(), name); kwargs...)
Base.rm(joinpath(julia_bin_path(), name * (Sys.iswindows() ? ".bat" : "")); kwargs...)
end

function get_project(sourcepath)
Expand Down

0 comments on commit f341c20

Please sign in to comment.