-
Notifications
You must be signed in to change notification settings - Fork 290
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
app.mk ping command fails on macos #28
Comments
We added SetCertificatesFile() function so roUrlTransfer() function can handle HTTPS content feed |
@jduval23 I don't think the function you mentioned is related to this issue. I just tried again with what's on master branch right now: wget https://raw.githubusercontent.com/rokudev/samples/master/getting%20started/makefile/app.mk -O ../app.mk
make install
ping -c 1 192.168.0.16
I'm pretty sure the PR #29 I sent is the right fix and this issue shouldn't be closed. And here's an actual output of the same of the above, but with the fixed wget https://raw.githubusercontent.com/rokudev/samples/3139c3fa6a43f137720b075c8818cc4c2d2a7f91/getting%20started/makefile/app.mk -O ../app.mk
make install
|
This is fixed and approved but not yet merged. |
QUICK_PING_ARGS
is using Linux's version when running on MacOS and it's using non existing flags on MacOS Big Sur.See here:
samples/getting started/makefile/app.mk
Line 138 in b6cc2e0
-c 1
is fine, but-w 1
is bad.Proof
The text was updated successfully, but these errors were encountered: