Skip to content

Commit

Permalink
Merge pull request #584 from awvwgk/env-bug
Browse files Browse the repository at this point in the history
Actually read environment variables
  • Loading branch information
LKedward authored Sep 28, 2021
2 parents f9464aa + ba4107d commit 1342b6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fpm_command_line.f90
Original file line number Diff line number Diff line change
Expand Up @@ -1221,7 +1221,7 @@ function get_fpm_env(env, default) result(val)

character(len=*), parameter :: fpm_prefix = "FPM_"

val = get_env(fpm_prefix//val, default)
val = get_env(fpm_prefix//env, default)
end function get_fpm_env

end module fpm_command_line

0 comments on commit 1342b6a

Please sign in to comment.