Skip to content

Refactor run command #229

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Nov 12, 2020
6 changes: 3 additions & 3 deletions fpm/app/main.f90
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ program main
fpm_test_settings, &
fpm_install_settings, &
get_command_line_settings
use fpm, only: cmd_build, cmd_install, cmd_run, cmd_test
use fpm, only: cmd_build, cmd_install, cmd_run
use fpm_cmd_new, only: cmd_new

implicit none
Expand All @@ -22,9 +22,9 @@ program main
type is (fpm_build_settings)
call cmd_build(settings)
type is (fpm_run_settings)
call cmd_run(settings)
call cmd_run(settings,test=.false.)
type is (fpm_test_settings)
call cmd_test(settings)
call cmd_run(settings,test=.true.)
type is (fpm_install_settings)
call cmd_install(settings)
end select
Expand Down
Loading