@@ -182,7 +182,6 @@ subroutine get_command_line_settings(cmd_settings)
182
182
cmd_settings= fpm_build_settings( release= lget(' release' ),list= lget(' list' ) )
183
183
184
184
case (' new' )
185
- <<<<<<< HEAD
186
185
help_text= [character (len= 80 ) :: &
187
186
' NAME ' , &
188
187
' new(1) - the fpm(1) subcommand to initialize a new project ' , &
@@ -227,39 +226,6 @@ subroutine get_command_line_settings(cmd_settings)
227
226
' The fpm(1) home page is https://github.com/fortran-lang/fpm ' , &
228
227
' ' , &
229
228
' Registered packages are at https://fortran-lang.org/packages ' , &
230
- =======
231
- help_text= [character (len= 80 ) :: &
232
- ' NAME ' , &
233
- ' new(1) - the fpm(1) subcommand to initialize a new project ' , &
234
- ' SYNOPSIS ' , &
235
- ' fpm new NAME [--with-executable] [--with-test] ' , &
236
- ' ' , &
237
- ' fpm new --help|--version ' , &
238
- ' ' , &
239
- ' DESCRIPTION ' , &
240
- ' Create a new programming project in a new directory ' , &
241
- ' ' , &
242
- ' The "new" subcommand creates a directory and runs the command ' , &
243
- ' "git init" in that directory and makes an example "fpm.toml" ' , &
244
- ' file, a src/ directory, and optionally a test/ and app/ ' , &
245
- ' directory with trivial example Fortran source files. ' , &
246
- ' ' , &
247
- ' Remember to update the information in the sample "fpm.toml" ' , &
248
- ' file with such information as your name and e-mail address. ' , &
249
- ' ' , &
250
- ' EXAMPLES ' , &
251
- ' Sample use ' , &
252
- ' ' , &
253
- ' # create new project directory and seed it ' , &
254
- ' fpm new myproject ' , &
255
- ' # Enter the new directory ' , &
256
- ' cd myproject ' , &
257
- ' # and run commands such as ' , &
258
- ' fpm build ' , &
259
- ' fpm run # if you selected --with-executable ' , &
260
- ' fpm test # if you selected --with-test ' , &
261
- ' ' , &
262
- >>>>>>> try one more like previous build to clear error
263
229
' ' ]
264
230
call set_args(' --with-executable F --with-test F --lib F --app F --test F' , help_text, version_text)
265
231
select case (size (unnamed))
@@ -443,11 +409,7 @@ subroutine get_command_line_settings(cmd_settings)
443
409
endif
444
410
help_text= [character (len= 80 ) :: &
445
411
' USAGE: fpm [ SUBCOMMAND [SUBCOMMAND_OPTIONS] ] | [|--help|--version] ' , &
446
- <<<<<<< HEAD
447
412
' Enter "fpm --help" for more information ' , &
448
- =======
449
- ' Enter "fpm --help" for more information , &
450
- >>>>>>> try one more like previous build to clear error
451
413
' ' ]
452
414
write (stderr,' (g0)' )(trim (help_text(i)), i= 1 , size (help_text) )
453
415
! !stop 3 ! causes github site tests to fail
0 commit comments