We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
rlwrap
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
Seen in Direwolf run 7e8bf080-e552-4614-98de-12872e040cc6 (which is building the Clojure Getting Started guide):
7e8bf080-e552-4614-98de-12872e040cc6
remote: -----> Building on the Heroku-24 stack remote: -----> Determining which buildpack to use for this app remote: -----> Clojure (Leiningen 2) app detected remote: -----> Installing Azul Zulu OpenJDK 17.0.15 remote: -----> Installing rlwrap... remote: Get:1 https://apt.postgresql.org/pub/repos/apt noble-pgdg InRelease [129 kB] remote: Get:2 https://apt.postgresql.org/pub/repos/apt noble-pgdg/main amd64 Packages [500 kB] remote: Get:3 http://security.ubuntu.com/ubuntu noble-security InRelease [126 kB] remote: Get:4 http://security.ubuntu.com/ubuntu noble-security/main amd64 Packages [1,026 kB] remote: Get:5 http://security.ubuntu.com/ubuntu noble-security/universe amd64 Packages [1,080 kB] remote: Ign:6 http://archive.ubuntu.com/ubuntu noble InRelease remote: Get:7 http://archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB] remote: Get:8 http://archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB] remote: Get:6 http://archive.ubuntu.com/ubuntu noble InRelease [256 kB] remote: Get:9 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [1,378 kB] remote: Get:10 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [1,345 kB] remote: Get:11 http://archive.ubuntu.com/ubuntu noble-backports/universe amd64 Packages [31.8 kB] remote: Get:12 http://archive.ubuntu.com/ubuntu noble-backports/main amd64 Packages [48.0 kB] remote: Get:13 http://archive.ubuntu.com/ubuntu noble/universe amd64 Packages [19.3 MB] remote: Get:14 http://archive.ubuntu.com/ubuntu noble/main amd64 Packages [1,808 kB] remote: rm: cannot remove '/var/cache/apt/archives/partial/*.deb': Permission denied remote: Fetched 27.3 MB in 1min 31s (300 kB/s) remote: Reading package lists... remote: Reading package lists... remote: Building dependency tree... remote: The following NEW packages will be installed: remote: rlwrap remote: 0 upgraded, 1 newly installed, 0 to remove and 31 not upgraded. remote: Need to get 107 kB of archives. remote: After this operation, 328 kB of additional disk space will be used. remote: Ign:1 http://archive.ubuntu.com/ubuntu noble/universe amd64 rlwrap amd64 0.46.1-1build2 remote: Ign:1 http://archive.ubuntu.com/ubuntu noble/universe amd64 rlwrap amd64 0.46.1-1build2 remote: Ign:1 http://archive.ubuntu.com/ubuntu noble/universe amd64 rlwrap amd64 0.46.1-1build2 remote: Err:1 http://archive.ubuntu.com/ubuntu noble/universe amd64 rlwrap amd64 0.46.1-1build2 remote: Connection failed [IP: 185.125.190.82 80] remote: E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/universe/r/rlwrap/rlwrap_0.46.1-1build2_amd64.deb Connection failed [IP: 185.125.190.82 80] remote: E: Some files failed to download remote: ls: cannot access '/tmp/codon/tmp/cache/clojure-bp-apt/cache/archives/*.deb': No such file or directory remote: chmod: cannot access '/tmp/build_d5f94e88/.heroku/apt/usr/bin/*': No such file or directory remote: ! Push rejected, failed to compile Clojure (Leiningen 2) app.
The build should have aborted after the E: Some files failed to download and not tried to continue onto the ls command, here:
E: Some files failed to download
ls
heroku-buildpack-clojure/lib/lein.sh
Lines 35 to 54 in ebe6104
I'm guessing the reason is that pipefail isn't enabled, given that the apt install command uses a pipe to indent:
pipefail
apt install
indent
Line 37 in ebe6104
cc @Malax
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Seen in Direwolf run
7e8bf080-e552-4614-98de-12872e040cc6
(which is building the Clojure Getting Started guide):The build should have aborted after the
E: Some files failed to download
and not tried to continue onto thels
command, here:heroku-buildpack-clojure/lib/lein.sh
Lines 35 to 54 in ebe6104
I'm guessing the reason is that
pipefail
isn't enabled, given that theapt install
command uses a pipe toindent
:heroku-buildpack-clojure/lib/lein.sh
Line 37 in ebe6104
cc @Malax
The text was updated successfully, but these errors were encountered: