Skip to content

Commit e0767b4

Browse files
committed
fix os_is_unix()
1 parent 2e8606b commit e0767b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fpm_environment.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ logical function os_is_unix(os) result(unix)
121121
else
122122
build_os = get_os_type()
123123
end if
124-
unix = os /= OS_WINDOWS
124+
unix = build_os /= OS_WINDOWS
125125
end function os_is_unix
126126

127127
!> echo command string and pass it to the system for execution

0 commit comments

Comments
 (0)