Hi. We have a script which is located on our server. It runs all the build process for android:
- wget -O build.sh https://ci.example.com/ci/build_android.sh
I want to run this command in my bitbucket-pipelines.yml file.
But it says that wget command is not found. Any suggestions how can I load this script?
Hi Alexey,
You can install the 'wget' command into your build environment with the following commands:
- apt-get update -y
- apt-get install -y wget
- wget -O build.sh https://ci.example.com/ci/build_android.sh
Thanks,
Phil
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.