-
Notifications
You must be signed in to change notification settings - Fork 35
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
Unable to use Orb with Alpine #97
Comments
Hello @FriedCircuits . Supporting golang in Alpine turned to be harder than expected because of the following:
|
Thanks for the reply. I tried to use |
I will update the orb to build the go binary in Alpine with support from go 1.13 up. |
The orb uses the
--gunzip
option with tar but that is unsupported in Alpine's version oftar
. It does however support-z
. This should be updated to use the more compatible parameter.See:
go-orb/src/scripts/install.sh
Line 26 in 6ed27bc
Error is
tar: unrecognized option: gunzip
Thanks.
Edit:
Also the same for
--no-same-owner
should be-o
.The text was updated successfully, but these errors were encountered: