diff options
author | Ondřej Čertík <ondrej@certik.us> | 2020-07-22 14:24:15 -0600 |
---|---|---|
committer | Ondřej Čertík <ondrej@certik.us> | 2020-07-22 15:29:58 -0600 |
commit | 0a978d6b694e90d2a218d6e1dc210a427a6a865c (patch) | |
tree | 98aa83d3a7c6993d68ed01de646e68094117ee9c | |
parent | c82579b3e245e91ddec40815c059c7b432d5ee6a (diff) | |
download | fpm-0a978d6b694e90d2a218d6e1dc210a427a6a865c.tar.gz fpm-0a978d6b694e90d2a218d6e1dc210a427a6a865c.zip |
Get macOS working
-rw-r--r-- | fpm/src/fpm.f90 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fpm/src/fpm.f90 b/fpm/src/fpm.f90 index 45d8782..eb30741 100644 --- a/fpm/src/fpm.f90 +++ b/fpm/src/fpm.f90 @@ -87,8 +87,7 @@ select case (get_os_type()) case (OS_LINUX) call execute_command_line("ls " // dir // " > fpm_ls.out", exitstat=stat) case (OS_MACOS) - print *, "macOS not supported yet" - error stop + call execute_command_line("ls " // dir // " > fpm_ls.out", exitstat=stat) case (OS_WINDOWS) print *, "Windows not supported yet" error stop |