@@ -99,7 +99,7 @@ subroutine get_command_line_settings(cmd_settings)
99
99
select case (trim (cmdarg))
100
100
101
101
case (' run' )
102
- call set_args(' --list:l F --release:r F --runner:c " " --' ,help_run,version_text)
102
+ call set_args(' --list F --release F --runner " " --' ,help_run,version_text)
103
103
104
104
if ( size (unnamed) .gt. 1 )then
105
105
names= unnamed(2 :)
@@ -112,14 +112,14 @@ subroutine get_command_line_settings(cmd_settings)
112
112
& release= lget(' release' ), args= remaining ,runner= sget(' runner' ) )
113
113
114
114
case (' build' )
115
- call set_args( ' --release:r F --list:l F --' ,help_build,version_text )
115
+ call set_args( ' --release F --list F --' ,help_build,version_text )
116
116
117
117
allocate ( fpm_build_settings :: cmd_settings )
118
118
cmd_settings= fpm_build_settings( release= lget(' release' ), &
119
119
& list= lget(' list' ) )
120
120
121
121
case (' new' )
122
- call set_args(' --src:s F --lib:l F --app:a F --test:t F --backfill:b F' , &
122
+ call set_args(' --src F --lib F --app F --test F --backfill F' , &
123
123
& help_new, version_text)
124
124
select case (size (unnamed))
125
125
case (1 )
@@ -205,17 +205,17 @@ subroutine get_command_line_settings(cmd_settings)
205
205
call printhelp(help_text)
206
206
207
207
case (' install' )
208
- call set_args(' --release:r F ' , help_install, version_text)
208
+ call set_args(' --release F ' , help_install, version_text)
209
209
210
210
allocate (fpm_install_settings :: cmd_settings)
211
211
case (' list' )
212
- call set_args(' --list:l F' , help_list, version_text)
212
+ call set_args(' --list F' , help_list, version_text)
213
213
call printhelp(help_list_nodash)
214
214
if (lget(' list' ))then
215
215
call printhelp(help_list_dash)
216
216
endif
217
217
case (' test' )
218
- call set_args(' --list:l F --release:r F --runner:c " " --' ,help_test,version_text)
218
+ call set_args(' --list F --release F --runner " " --' ,help_test,version_text)
219
219
220
220
if ( size (unnamed) .gt. 1 )then
221
221
names= unnamed(2 :)
@@ -230,7 +230,7 @@ subroutine get_command_line_settings(cmd_settings)
230
230
231
231
case default
232
232
233
- call set_args(' --list:l F' , help_fpm, version_text)
233
+ call set_args(' --list F' , help_fpm, version_text)
234
234
! Note: will not get here if --version or --usage or --help
235
235
! is present on commandline
236
236
help_text= help_usage
0 commit comments