-
Notifications
You must be signed in to change notification settings - Fork 34
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
Curl as failover of wget for connectors #146
Comments
Don't forget to mention new Gitlab connector in README/CHANGELOG because no feature was dedicated. |
Do python version of gitlab connector is working? |
This connector only work with PHP. |
OK. Hmm… so why give priority to pyhton language in |
The chosen language always was PHP if installed. But to be compatible with the most OS, I did the python version. |
"The chosen language always was PHP if installed.": sorry, but the code below seems say the opposite. Currently, in each connector, the chosen language is PHP if and only if Python is not installed. ^^ But if your Python version is working, it's fine :-) # Python or PHP ?
language='?'
which python 1>/dev/null 2>&1
if [ $? -eq 0 ]; then
language='python'
else
which php 1>/dev/null 2>&1
if [ $? -eq 0 ]; then
language='php'
fi
fi |
Yes, this code was added when I did the python version ;-) |
OK, thx |
OSX does not have wget installed by default.
Allow connectors to use curl as failover.
The text was updated successfully, but these errors were encountered: