mirror of
https://github.com/ScoopInstaller/Scoop.git
synced 2025-10-30 14:17:54 +00:00
Compare commits
4 Commits
v0.5.3
...
5bd165a259
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5bd165a259 | ||
|
|
691c23330c | ||
|
|
01b6bf07cd | ||
|
|
bc6d43c733 |
@@ -1,3 +1,10 @@
|
|||||||
|
## [Unreleased](https://github.com/ScoopInstaller/Scoop/compare/v0.5.3...develop)
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- **scoop-update**: Force sync tags w/ remote branch while scoop update ([#6439](https://github.com/ScoopInstaller/Scoop/issues/6439))
|
||||||
|
- **scoop-download**: Fix function `nightly_version` not defined error ([#6386](https://github.com/ScoopInstaller/Scoop/issues/6386))
|
||||||
|
|
||||||
## [v0.5.3](https://github.com/ScoopInstaller/Scoop/compare/v0.5.2...v0.5.3) - 2025-08-11
|
## [v0.5.3](https://github.com/ScoopInstaller/Scoop/compare/v0.5.2...v0.5.3) - 2025-08-11
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|||||||
@@ -25,6 +25,7 @@
|
|||||||
. "$PSScriptRoot\..\lib\versions.ps1" # 'Select-CurrentVersion'
|
. "$PSScriptRoot\..\lib\versions.ps1" # 'Select-CurrentVersion'
|
||||||
. "$PSScriptRoot\..\lib\manifest.ps1" # 'generate_user_manifest' 'Get-Manifest'
|
. "$PSScriptRoot\..\lib\manifest.ps1" # 'generate_user_manifest' 'Get-Manifest'
|
||||||
. "$PSScriptRoot\..\lib\download.ps1"
|
. "$PSScriptRoot\..\lib\download.ps1"
|
||||||
|
. "$PSScriptRoot\..\lib\install.ps1" # 'nightly_version'
|
||||||
if (get_config USE_SQLITE_CACHE) {
|
if (get_config USE_SQLITE_CACHE) {
|
||||||
. "$PSScriptRoot\..\lib\database.ps1"
|
. "$PSScriptRoot\..\lib\database.ps1"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -136,7 +136,7 @@ function Sync-Scoop {
|
|||||||
# reset branch HEAD
|
# reset branch HEAD
|
||||||
Invoke-Git -Path $currentdir -ArgumentList @('reset', '--hard', "origin/$configBranch", '-q')
|
Invoke-Git -Path $currentdir -ArgumentList @('reset', '--hard', "origin/$configBranch", '-q')
|
||||||
} else {
|
} else {
|
||||||
Invoke-Git -Path $currentdir -ArgumentList @('pull', '-q')
|
Invoke-Git -Path $currentdir -ArgumentList @('pull', '--tags', '--force', '-q')
|
||||||
}
|
}
|
||||||
|
|
||||||
$res = $lastexitcode
|
$res = $lastexitcode
|
||||||
|
|||||||
Reference in New Issue
Block a user