-
Notifications
You must be signed in to change notification settings - Fork 188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
install: allow busybox unzip
, 7z/7zz/7za, bsdtar
#321
Open
erg
wants to merge
1
commit into
denoland:master
Choose a base branch
from
erg:install-sh-allow-busybox
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
erg
force-pushed
the
install-sh-allow-busybox
branch
2 times, most recently
from
January 29, 2025 20:28
5b4d542
to
2f46582
Compare
erg
added a commit
to erg/bun
that referenced
this pull request
Jan 29, 2025
see denoland/deno_install#321 as well This makes installing bun easier on systems where you don't have root.
erg
force-pushed
the
install-sh-allow-busybox
branch
2 times, most recently
from
January 29, 2025 21:40
c687b48
to
0ae0cfd
Compare
erg
added a commit
to erg/bun
that referenced
this pull request
Jan 29, 2025
see denoland/deno_install#321 as well This makes installing bun easier on systems where you don't have root.
erg
added a commit
to erg/bun
that referenced
this pull request
Jan 29, 2025
see denoland/deno_install#321 as well This makes installing bun easier on systems where you don't have root.
erg
added a commit
to erg/bun
that referenced
this pull request
Jan 29, 2025
see denoland/deno_install#321 as well This makes installing bun easier on systems where you don't have root.
https://github.com/denoland/deno_install/actions/runs/13040968656/job/36382511316 macOS has a failing test. it looks like it's failing the shell check. Updating...
|
erg
force-pushed
the
install-sh-allow-busybox
branch
2 times, most recently
from
January 29, 2025 23:19
064a242
to
096c6a9
Compare
according to issue denoland#172, `busybox unzip` is an alternative to installing unzip or 7z. 7zz is a standalone build of 7z busybox is installed by default on Ubuntu 24.04.1 LTS but unzip/7z are not. note: busybox is not installed on macOS 15.3 by default but unzip is.
erg
force-pushed
the
install-sh-allow-busybox
branch
from
January 30, 2025 05:54
096c6a9
to
b33c3ef
Compare
erg
added a commit
to erg/bun
that referenced
this pull request
Jan 30, 2025
see denoland/deno_install#321 as well This makes installing bun easier on systems where you don't have root.
erg
added a commit
to erg/bun
that referenced
this pull request
Jan 30, 2025
see denoland/deno_install#321 as well This makes installing bun easier on systems where you don't have root.
erg
changed the title
install: allow
install: allow Jan 30, 2025
busybox unzip
busybox unzip
, 7z/7zz/7za, bsdtar
erg
added a commit
to erg/bun
that referenced
this pull request
Jan 30, 2025
see denoland/deno_install#321 as well This makes installing bun easier on systems where you don't have root.
erg
added a commit
to erg/bun
that referenced
this pull request
Jan 30, 2025
see denoland/deno_install#321 as well This makes installing bun easier on systems where you don't have root.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
according to issue #172,
busybox unzip
is an alternative to installing unzip or 7z. (it works!)also support 7zz, a standalone 7z build. and 7za, another binary name for 7z. and support bsdtar.
busybox is installed by default on Ubuntu 24.04.1 LTS but unzip/7z are not.
note: busybox is not installed on macOS 15.3 by default but unzip is.
see also bun repo for a similar pr. oven-sh/bun#16881