I have a Bitbucket Pipelines yaml that looks like this:
image: python:3.5.1
pipelines:
branches:
master:
- step:
script:
- apt-get update
- apt-get install lsb-release -y
- curl --silent https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -
- VERSION=node_5.x
- DISTRO="$(lsb-release -s -c)"
- echo "deb https://deb.nodesource.com/$VERSION $DISTRO main" | tee /etc/apt/sources.list.d/nodesource.list
- echo "deb-src https://deb.nodesource.com/$VERSION $DISTRO main" | tee -a /etc/apt/sources.list.d/nodesource.list
- apt-get update
- apt-get install nodejs -y
- npm install
- npm run build
- python get-pip.py
- pip install boto3==1.3.0
- python s3_upload.py io-master.fromthiscomesthat.co.uk dist io-master
All working well, except DISTRO="$(lsb-release -s -c)"
is failing. Cannot find the lsb-release
executable, even though it's installed successfully in the script. I have tried find / -name lsb-release
but that only yields the following:
+ find / -name lsb-release
/usr/share/doc/lsb-release
/usr/share/bug/lsb-release
...which is not very useful.
Where is the executable??