I am trying to setup Cucumber (Ruby) with webdrivers, so I'm executing:
curl -O http://chromedriver.storage.googleapis.com/2.39/chromedriver_linux64.zip
...followed by:
unzip chromedriver_linux64.zip -d ./webdrivers
Unfortunately, this results in "bash: unzip: command not found". So I tried adding "apt-get install unzip", but this results in "E: Unable to locate package unzip".
What am I missing?
@Feldhacker are you using a custom docker image in your pipeline?
You may need to first run 'apt-get update' before running 'apt-get install unzip' to fetch the list of available packages first, before attempting to install 'unzip'.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.