@@ -24,23 +24,24 @@ New-Item -Path $Publish -ItemType Directory -Force > $null
2424if (! (Test-Path - Path $path )) {
2525 Write-Host " Generating manifest."
2626 $genParams = @ {
27- Path = $path
28- Guid = [Guid ]::NewGuid().ToString()
29- PowerShellVersion = " 5.1"
30- Author = " guitarrapc"
31- ModuleVersion = $v
32- RootModule = $rootModule
33- RequiredModules = @ (" PowerShell-Yaml" )
34- Description = " PowerShell Module to run scoop like ansible playbook"
35- CompatiblePSEditions = @ (" Core" , " Desktop" )
36- FunctionsToExport = $functionToExport
37- AliasesToExport = $aliasToExport
38- CmdletsToExport = @ ()
39- VariablesToExport = @ ()
40- Tags = " scoop"
41- ProjectUri = " https://github.com/guitarrapc/ScoopPlaybook"
42- LicenseUri = " https://github.com/guitarrapc/ScoopPlaybook/blob/master/LICENSE.md"
43- ReleaseNotes = " https://github.com/guitarrapc/ScoopPlaybook/releases/tag/$Version "
27+ Path = $path
28+ Guid = [Guid ]::NewGuid().ToString()
29+ PowerShellVersion = " 5.1"
30+ Author = " guitarrapc"
31+ ModuleVersion = $v
32+ RootModule = $rootModule
33+ Description = " PowerShell Module to run scoop like ansible playbook"
34+ CompatiblePSEditions = @ (" Core" , " Desktop" )
35+ FunctionsToExport = $functionToExport
36+ AliasesToExport = $aliasToExport
37+ CmdletsToExport = @ ()
38+ VariablesToExport = @ ()
39+ Tags = " scoop"
40+ ProjectUri = " https://github.com/guitarrapc/ScoopPlaybook"
41+ LicenseUri = " https://github.com/guitarrapc/ScoopPlaybook/blob/master/LICENSE.md"
42+ ReleaseNotes = " https://github.com/guitarrapc/ScoopPlaybook/releases/tag/$Version "
43+ # RequiredModules = @('PowerShell-Yaml') # not work on linux pwsh
44+ ExternalModuleDependencies = @ (" PowerShell-Yaml" )
4445 }
4546 New-ModuleManifest @genParams
4647}
0 commit comments