git-filter-repo: Remove extract_dir

Fixes #3042
Fixes #1082
Fixes #1869
This commit is contained in:
Rashil Gandhi 2022-01-11 14:45:09 +05:30
parent 495a30a08c
commit 8b8da663ff
No known key found for this signature in database
GPG Key ID: 0AF22EDF6BE85BBD

View File

@ -3,19 +3,21 @@
"description": "git filter-branch replacement",
"homepage": "https://github.com/newren/git-filter-repo",
"license": "MIT",
"notes": "Using Python 3",
"suggest": {
"Python 3": "python"
},
"url": "https://github.com/newren/git-filter-repo/archive/v2.34.0.zip",
"hash": "6425c8d7f60cabf1afec27673658e1ee5f6acab02f4363cc3f06a6089f1d8ab4",
"extract_dir": "git-filter-repo-2.34.0",
"pre_install": "Set-Content -Path \"$dir\\git-filter-repo.ps1\" -Value \"python3 '$dir\\git-filter-repo' @args\"",
"post_install": "New-Item -ItemType SymbolicLink -Path \"$dir\\contrib\\filter-repo-demos\\git_filter_repo.py\" -Target \"$dir\\git-filter-repo\" | Out-Null",
"bin": "git-filter-repo.ps1",
"pre_install": "Move-Item \"$dir\\git-filter-repo-*\\*\" \"$dir\"; Remove-Item \"$dir\\git-filter-repo-*\"",
"post_install": "Copy-Item \"$dir\\git-filter-repo\" \"$dir\\contrib\\filter-repo-demos\" | Out-Null",
"bin": [
[
"git_filter_repo.py",
"git-filter-repo"
]
],
"checkver": "github",
"autoupdate": {
"url": "https://github.com/newren/git-filter-repo/archive/v$version.zip",
"extract_dir": "git-filter-repo-$version"
"url": "https://github.com/newren/git-filter-repo/archive/v$version.zip"
}
}