Skip to content

Commit cbe29ed

Browse files
committed
chore: Update repo links
1 parent cd6d31d commit cbe29ed

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

bin/checkhashes.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
Manifests without mismatch will not be shown.
1515
.PARAMETER UseCache
1616
Downloaded files will not be deleted after script finish.
17-
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: Slack@3.3.1 lukesampson/scoop-extras#1192)), not some previously downloaded.
17+
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: Slack@3.3.1 ScoopInstaller/Extras#1192)), not some previously downloaded.
1818
.EXAMPLE
1919
PS BUCKETROOT> .\bin\checkhashes.ps1
2020
Check all manifests for hash mismatch.

lib/json.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ function normalize_values([psobject] $json) {
162162
# Recursively edit psobjects
163163
# If the values is psobjects, its not normalized
164164
# For example if manifest have architecture and it's architecture have array with single value it's not formatted.
165-
# @see https://github.com/lukesampson/scoop/pull/2642#issue-220506263
165+
# @see https://github.com/ScoopInstaller/Scoop/pull/2642#issue-220506263
166166
if ($_.Value -is [System.Management.Automation.PSCustomObject]) {
167167
$_.Value = normalize_values $_.Value
168168
}

lib/versions.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ function Compare-Version {
135135
$Delimiter = '-'
136136
)
137137
process {
138-
# Use '+' sign as post-release, see https://github.com/lukesampson/scoop/pull/3721#issuecomment-553718093
138+
# Use '+' sign as post-release, see https://github.com/ScoopInstaller/Scoop/pull/3721#issuecomment-553718093
139139
$ReferenceVersion, $DifferenceVersion = @($ReferenceVersion, $DifferenceVersion) -replace '\+', '-'
140140

141141
# Return 0 if versions are equal

libexec/scoop-bucket.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# scoop bucket add <name> [<repo>]
1111
#
1212
# e.g.:
13-
# scoop bucket add extras https://github.com/lukesampson/scoop-extras.git
13+
# scoop bucket add extras https://github.com/ScoopInstaller/Extras.git
1414
#
1515
# Since the 'extras' bucket is known to Scoop, this can be shortened to:
1616
# scoop bucket add extras

libexec/scoop-update.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ $all = $opt.a -or $opt.all
4141
# load config
4242
$configRepo = get_config SCOOP_REPO
4343
if (!$configRepo) {
44-
$configRepo = "https://github.com/lukesampson/scoop"
44+
$configRepo = "https://github.com/ScoopInstaller/Scoop"
4545
set_config SCOOP_REPO $configRepo | Out-Null
4646
}
4747

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

201201
# region Workaround
202-
# Workaround for https://github.com/lukesampson/scoop/issues/2220 until install is refactored
202+
# Workaround for https://github.com/ScoopInstaller/Scoop/issues/2220 until install is refactored
203203
# Remove and replace whole region after proper fix
204204
Write-Host "Downloading new version"
205205
if (Test-Aria2Enabled) {

schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@
521521
"type": "string"
522522
},
523523
"innosetup": {
524-
"description": "True if the installer InnoSetup based. Found in https://github.com/lukesampson/scoop/search?l=JSON&q=innosetup",
524+
"description": "True if the installer InnoSetup based. Found in https://github.com/ScoopInstaller/Main/search?l=JSON&q=innosetup",
525525
"type": "boolean"
526526
},
527527
"installer": {

0 commit comments

Comments
 (0)