Skip to content

Commit 92254f7

Browse files
authored
Merge pull request #932 from fortran-lang/fix-module-naming-typo
Fix `module-naming` typo
2 parents c9072d9 + e5a4562 commit 92254f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fpm/cmd/publish.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ subroutine cmd_publish(settings)
4747
!> Checks before uploading the package.
4848
if (.not. allocated(package%license)) call fpm_stop(1, 'No license specified in fpm.toml.')
4949
if (.not. package%build%module_naming) call fpm_stop(1, 'The package does not meet the module naming requirements. '// &
50-
& 'Please set "module_naming = true" in fpm.toml [build] or specify a custom module prefix.')
50+
& 'Please set "module-naming = true" in fpm.toml [build] or specify a custom module prefix.')
5151
if (.not. allocated(version)) call fpm_stop(1, 'No version specified in fpm.toml.')
5252
if (version%s() == '0') call fpm_stop(1, 'Invalid version: "'//version%s()//'".')
5353
if (.not. exists('fpm.toml')) call fpm_stop(1, "Cannot find 'fpm.toml' file. Are you in the project root?")

0 commit comments

Comments
 (0)