Skip to content

Commit 08d8896

Browse files
Merge pull request #32 from steviecoaster/develop
Pull in new changes and docs url
2 parents 2b5920e + 5a0c7cd commit 08d8896

File tree

77 files changed

+253
-83
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+253
-83
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ A PowerShell module for Sonatype Nexus repository server administration
1414

1515
### Documentation
1616

17-
Information about currently supported functions and their usage can be found on the [docs](https://steviecoaster.dev/NexuShell/) site.
17+
Information about currently supported functions and their usage can be found on the [docs](https://steviecoaster.github.io/NexuShell/) site.

src/NexuShell.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@
5050
} # End of PrivateData hashtable
5151

5252
# HelpInfo URI of this module
53-
HelpInfoURI = 'https://steviecoaster.dev/NexuShell/'
53+
HelpInfoURI = 'https://steviecoaster.github.io/NexuShell/'
5454
}

src/nuget/NexuShell.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<projectSourceUrl>https://github.com/steviecoaster/NexuShell</projectSourceUrl>
1313
<iconUrl>https://cdn.jsdelivr.net/gh/steviecoaster/NexuShell@develop/logo/nexushell.svg</iconUrl>
1414
<copyright>(c) 2021 steviecoaster. All rights reserved.</copyright>
15-
<docsUrl>https://steviecoaster.dev/NexuShell/</docsUrl>
15+
<docsUrl>https://steviecoaster.github.io/NexuShell/</docsUrl>
1616
<bugTrackerUrl>https://github.com/steviecoaster/NexuShell/issues</bugTrackerUrl>
1717
<licenseUrl>https://raw.githubusercontent.com/steviecoaster/NexuShell/main/LICENSE</licenseUrl>
1818
<requireLicenseAcceptance>false</requireLicenseAcceptance>

src/public/Anonymous/Get-NexusAnonymousAuthStatus.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function Get-NexusAnonymousAuthStatus {
99
.EXAMPLE
1010
Get-NexusAnonymousAuth
1111
#>
12-
[CmdletBinding(HelpUri='https://steviecoaster.dev/NexuShell/Get-NexusAnonymousAuthStatus/')]
12+
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Get-NexusAnonymousAuthStatus/')]
1313
Param()
1414

1515
begin {

src/public/Anonymous/Set-NexusAnonymousAuth.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function Set-NexusAnonymousAuth {
1515
.EXAMPLE
1616
Set-NexusAnonymousAuth -Enabled
1717
#>
18-
[CmdletBinding(HelpUri='https://steviecoaster.dev/NexuShell/Set-NexusAnonymousAuth/')]
18+
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Set-NexusAnonymousAuth/')]
1919
Param(
2020
[Parameter()]
2121
[Switch]

src/public/Assets/Get-NexusAsset.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function Get-NexusAsset {
2020
2121
.NOTES
2222
#>
23-
[CmdletBinding(HelpUri='https://steviecoaster.dev/NexuShell/Assets/Get-NexusAsset/',DefaultParameterSetName="repo")]
23+
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Assets/Get-NexusAsset/',DefaultParameterSetName="repo")]
2424
Param(
2525
[Parameter(ParameterSetName="repo",Mandatory)]
2626
[String]

src/public/Assets/Remove-NexusAsset.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function Remove-NexusAsset {
2020
2121
.NOTES
2222
#>
23-
[CmdletBinding(HelpUri='https://steviecoaster.dev/NexuShell/Assets/Remove-NexusAsset/',SupportsShouldProcess,ConfirmImpact='High')]
23+
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Assets/Remove-NexusAsset/',SupportsShouldProcess,ConfirmImpact='High')]
2424
Param(
2525
[Parameter(Mandatory)]
2626
[String[]]

src/public/BlobStore/Get-NexusBlobStore.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function Get-NexusBlobStore {
2424
.EXAMPLE
2525
Get-NexusBlobStore -Name TreasureBlob -Type file -Detailed
2626
#>
27-
[CmdletBinding(HelpUri='https://steviecoaster.dev/NexuShell/Get-NexusBlobStore/',DefaultParameterSetName = "Default")]
27+
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Get-NexusBlobStore/',DefaultParameterSetName = "Default")]
2828
Param(
2929
[Parameter(Mandatory, ParameterSetName = "Name")]
3030
[String]

src/public/BlobStore/Get-NexusBlobStoreQuota.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function Get-NexusBlobStoreQuota {
1212
.EXAMPLE
1313
Get-NexusBlobStoreQuota -Name TestBlob
1414
#>
15-
[CmdletBinding(HelpUri='https://steviecoaster.dev/NexuShell/Get-NexusBlobStoreQuota/')]
15+
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/Get-NexusBlobStoreQuota/')]
1616
Param(
1717
[Parameter(Mandatory)]
1818
[String[]]

src/public/BlobStore/New-NexusBlobStore.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function New-NexusBlobStore {
6969
.NOTES
7070
S3 buckets are currently not supported by the cmdlet until I can get S3 for testing
7171
#>
72-
[CmdletBinding(HelpUri='https://steviecoaster.dev/NexuShell/New-NexusBlobStore/')]
72+
[CmdletBinding(HelpUri='https://steviecoaster.github.io/NexuShell/New-NexusBlobStore/')]
7373
Param(
7474
[Parameter(Mandatory,ParameterSetName="File")]
7575
[Parameter(Mandatory,ParameterSetName="S3")]

0 commit comments

Comments
 (0)