os: cleanup os.find_abs_path_of_executable/1

pull/7037/head
Delyan Angelov 2020-11-30 08:40:32 +02:00
parent 05eeb8aa53
commit aae5812337
1 changed files with 1 additions and 2 deletions

View File

@ -1025,8 +1025,7 @@ pub fn find_abs_path_of_executable(exepath string) ?string {
return os.real_path(exepath)
}
mut res := ''
env_path_delimiter := if os.user_os() == 'windows' { ';' } else { ':' }
paths := os.getenv('PATH').split(env_path_delimiter)
paths := os.getenv('PATH').split(path_delimiter)
for p in paths {
found_abs_path := os.join_path( p, exepath )
if os.exists( found_abs_path ) && os.is_executable( found_abs_path ) {