Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

Commit

Permalink
Use Windows-safe isfile for checking tarball (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cody-G authored and staticfloat committed Jan 18, 2019
1 parent 543fcff commit 530fb35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Prefix.jl
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ function install(tarball_url::AbstractString,

# Check to see if any files are already present
for file in file_list
if isfile(joinpath(prefix, file))
if safe_isfile(joinpath(prefix, file))
if !force
msg = "$(file) already exists and would be overwritten while "
msg *= "installing $(basename(tarball_path))\n"
Expand Down

0 comments on commit 530fb35

Please sign in to comment.