Skip to content

Commit f1f8649

Browse files
committed
Incorporate organization and bucket renaming
See: #3437
1 parent abcb59c commit f1f8649

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

bin/install.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ shim "$dir\bin\scoop.ps1" $false
5656

5757
# download main bucket
5858
$dir = "$scoopdir\buckets\main"
59-
$zipurl = 'https://github.com/scoopinstaller/scoop-main/archive/master.zip'
59+
$zipurl = 'https://github.com/ScoopInstaller/Main/archive/master.zip'
6060
$zipfile = "$dir\main-bucket.zip"
6161
Write-Output 'Downloading main bucket...'
6262
New-Item $dir -Type Directory -Force | Out-Null

bin/scoop.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ reset_aliases
1313

1414
# TODO: remove this in a few weeks
1515
if ((Get-LocalBucket) -notcontains 'main') {
16-
warn "The main bucket of Scoop has been separated to 'https://github.com/scoopinstaller/scoop-main'"
16+
warn "The main bucket of Scoop has been separated to 'https://github.com/ScoopInstaller/Main'"
1717
warn "You don't have the main bucket added, adding main bucket for you..."
1818
add_bucket 'main'
1919
exit

buckets.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"main": "https://github.com/scoopinstaller/scoop-main",
2+
"main": "https://github.com/ScoopInstaller/Main",
33
"extras": "https://github.com/lukesampson/scoop-extras",
4-
"versions": "https://github.com/scoopinstaller/versions",
5-
"nightlies": "https://github.com/scoopinstaller/nightlies",
4+
"versions": "https://github.com/ScoopInstaller/Versions",
5+
"nightlies": "https://github.com/ScoopInstaller/Nightlies",
66
"nirsoft": "https://github.com/kodybrown/scoop-nirsoft",
7-
"php": "https://github.com/scoopinstaller/php",
7+
"php": "https://github.com/ScoopInstaller/PHP",
88
"nerd-fonts": "https://github.com/matthewjberger/scoop-nerd-fonts",
99
"nonportable": "https://github.com/oltolm/scoop-nonportable",
10-
"java": "https://github.com/scoopinstaller/Java",
10+
"java": "https://github.com/ScoopInstaller/Java",
1111
"games": "https://github.com/Calinou/scoop-games",
1212
"jetbrains": "https://github.com/Ash258/Scoop-JetBrains"
1313
}

libexec/scoop-install.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# scoop install git
55
#
66
# To install an app from a manifest at a URL:
7-
# scoop install https://raw.githubusercontent.com/scoopinstaller/scoop-main/master/bucket/runat.json
7+
# scoop install https://raw.githubusercontent.com/ScoopInstaller/Main/master/bucket/runat.json
88
#
99
# To install an app from a manifest on your computer
1010
# scoop install \path\to\app.json

libexec/scoop-update.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function update_scoop() {
105105
}
106106

107107
if ((Get-LocalBucket) -notcontains 'main') {
108-
info "The main bucket of Scoop has been separated to 'https://github.com/scoopinstaller/scoop-main'"
108+
info "The main bucket of Scoop has been separated to 'https://github.com/ScoopInstaller/Main'"
109109
info "Adding main bucket..."
110110
add_bucket 'main'
111111
}

0 commit comments

Comments
 (0)