diff options
| author | Marc Cornellà <marc@mcornella.com> | 2024-08-30 14:30:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-30 14:30:57 +0200 |
| commit | c68ff8aeedc2b779ae42d745457ecd443e22e212 (patch) | |
| tree | 7fcfb3d74b907070c5829ffce3002df4b4091137 /plugins/extract/extract.plugin.zsh | |
| parent | ea8068aa3eeecc785249f2e83289e8a9294b9d6b (diff) | |
| download | zsh-c68ff8aeedc2b779ae42d745457ecd443e22e212.tar.gz zsh-c68ff8aeedc2b779ae42d745457ecd443e22e212.tar.bz2 zsh-c68ff8aeedc2b779ae42d745457ecd443e22e212.zip | |
feat(extract): add support for .vsix files (VS Code extension) (#12643)
Diffstat (limited to 'plugins/extract/extract.plugin.zsh')
| -rw-r--r-- | plugins/extract/extract.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/extract/extract.plugin.zsh b/plugins/extract/extract.plugin.zsh index e2b3111d5..f2eebf4d6 100644 --- a/plugins/extract/extract.plugin.zsh +++ b/plugins/extract/extract.plugin.zsh @@ -76,7 +76,7 @@ EOF (*.lz4) lz4 -d "$full_path" ;; (*.lzma) unlzma "$full_path" ;; (*.z) uncompress "$full_path" ;; - (*.zip|*.war|*.jar|*.ear|*.sublime-package|*.ipa|*.ipsw|*.xpi|*.apk|*.aar|*.whl) unzip "$full_path" ;; + (*.zip|*.war|*.jar|*.ear|*.sublime-package|*.ipa|*.ipsw|*.xpi|*.apk|*.aar|*.whl|*.vsix) unzip "$full_path" ;; (*.rar) unrar x -ad "$full_path" ;; (*.rpm) rpm2cpio "$full_path" | cpio --quiet -id ;; |
