Skip to content

Commit

Permalink
chore: Update repo links
Browse files Browse the repository at this point in the history
  • Loading branch information
rashil2000 committed Dec 15, 2021
1 parent cd6d31d commit cbe29ed
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bin/checkhashes.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
Manifests without mismatch will not be shown.
.PARAMETER UseCache
Downloaded files will not be deleted after script finish.
Should not be used, because check should be used for downloading actual version of file (as normal user, not finding in some document from vendors, which could be damaged / wrong (Example: [email protected] lukesampson/scoop-extras#1192)), not some previously downloaded.
Should not be used, because check should be used for downloading actual version of file (as normal user, not finding in some document from vendors, which could be damaged / wrong (Example: [email protected] ScoopInstaller/Extras#1192)), not some previously downloaded.
.EXAMPLE
PS BUCKETROOT> .\bin\checkhashes.ps1
Check all manifests for hash mismatch.
Expand Down
2 changes: 1 addition & 1 deletion lib/json.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ function normalize_values([psobject] $json) {
# Recursively edit psobjects
# If the values is psobjects, its not normalized
# For example if manifest have architecture and it's architecture have array with single value it's not formatted.
# @see https://github.com/lukesampson/scoop/pull/2642#issue-220506263
# @see https://github.com/ScoopInstaller/Scoop/pull/2642#issue-220506263
if ($_.Value -is [System.Management.Automation.PSCustomObject]) {
$_.Value = normalize_values $_.Value
}
Expand Down
2 changes: 1 addition & 1 deletion lib/versions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ function Compare-Version {
$Delimiter = '-'
)
process {
# Use '+' sign as post-release, see https://github.com/lukesampson/scoop/pull/3721#issuecomment-553718093
# Use '+' sign as post-release, see https://github.com/ScoopInstaller/Scoop/pull/3721#issuecomment-553718093
$ReferenceVersion, $DifferenceVersion = @($ReferenceVersion, $DifferenceVersion) -replace '\+', '-'

# Return 0 if versions are equal
Expand Down
2 changes: 1 addition & 1 deletion libexec/scoop-bucket.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# scoop bucket add <name> [<repo>]
#
# e.g.:
# scoop bucket add extras https://github.com/lukesampson/scoop-extras.git
# scoop bucket add extras https://github.com/ScoopInstaller/Extras.git
#
# Since the 'extras' bucket is known to Scoop, this can be shortened to:
# scoop bucket add extras
Expand Down
4 changes: 2 additions & 2 deletions libexec/scoop-update.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ $all = $opt.a -or $opt.all
# load config
$configRepo = get_config SCOOP_REPO
if (!$configRepo) {
$configRepo = "https://github.com/lukesampson/scoop"
$configRepo = "https://github.com/ScoopInstaller/Scoop"
set_config SCOOP_REPO $configRepo | Out-Null
}

Expand Down Expand Up @@ -199,7 +199,7 @@ function update($app, $global, $quiet = $false, $independent, $suggested, $use_c
write-host "Updating '$app' ($old_version -> $version)"

# region Workaround
# Workaround for https://github.com/lukesampson/scoop/issues/2220 until install is refactored
# Workaround for https://github.com/ScoopInstaller/Scoop/issues/2220 until install is refactored
# Remove and replace whole region after proper fix
Write-Host "Downloading new version"
if (Test-Aria2Enabled) {
Expand Down
2 changes: 1 addition & 1 deletion schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@
"type": "string"
},
"innosetup": {
"description": "True if the installer InnoSetup based. Found in https://github.com/lukesampson/scoop/search?l=JSON&q=innosetup",
"description": "True if the installer InnoSetup based. Found in https://github.com/ScoopInstaller/Main/search?l=JSON&q=innosetup",
"type": "boolean"
},
"installer": {
Expand Down

0 comments on commit cbe29ed

Please sign in to comment.