mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-22 20:45:14 +00:00
Ports: Remove the separate branch for extracting .tar.gz files
This can just use the default `tar` invocation, which successfully recognizes the type automatically. In fact, `.tar.gz` and `.tgz` are already listed by that particular case anyways.
This commit is contained in:
parent
58cf3b365e
commit
401544f68f
Notes:
sideshowbarker
2024-07-17 02:08:15 +09:00
Author: https://github.com/timschumi Commit: https://github.com/SerenityOS/serenity/commit/401544f68f Pull-request: https://github.com/SerenityOS/serenity/pull/19970
1 changed files with 0 additions and 4 deletions
|
@ -364,10 +364,6 @@ fetch() {
|
|||
|
||||
if [ ! -f "$workdir"/.${filename}_extracted ]; then
|
||||
case "$filename" in
|
||||
*.tar.gz|*.tgz)
|
||||
run_nocd tar -xzf "${PORT_META_DIR}/${filename}"
|
||||
run touch .${filename}_extracted
|
||||
;;
|
||||
*.tar.gz|*.tar.bz|*.tar.bz2|*.tar.xz|*.tar.lz|*.tar.zst|.tbz*|*.txz|*.tgz)
|
||||
run_nocd tar -xf "${PORT_META_DIR}/${filename}"
|
||||
run touch .${filename}_extracted
|
||||
|
|
Loading…
Add table
Reference in a new issue