-
Notifications
You must be signed in to change notification settings - Fork 6
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
closures does not work in system without unzip
#31
Comments
I tried it in centos and it seems to work. To produce the following output, I edited
If the script can't find |
You are right. That's just the missing |
unzip
Sounds good. Do you have any proposals for a fix? We could check if unzip is present and produce a better error message. Is this what you expect? |
It would be better yes. Why using |
See the announcement blog post. Clodl uses zip files because that is the
archive format used for JARs. The tools you propose are for different
formats.
|
Clodl uses zip, the same as jars. But we never use clodl to build a jar. At least sparkle creates the jars using java_library, not clodl. @guibou if you need another format, it could be added as an option. If you want to eliminate zip, then we would need to teach sparkle to extract the new format, but it is probably not worth the trouble. |
Having clodl output tar archives would be really handy when using it to build containers since the |
From current master:
Build works
Execution in the shell works:
However, if I'm leaving the shell, the execution does not work anymore:
It may come from the behavior of
mktemp -d
which is different between inside and outside of the nix shell:I'm using nixos (from nixos-unstable) as my os.
The text was updated successfully, but these errors were encountered: