Skip to content

Instantly share code, notes, and snippets.

@xkr47
Last active December 28, 2015 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save xkr47/7545479 to your computer and use it in GitHub Desktop.
Save xkr47/7545479 to your computer and use it in GitHub Desktop.
~/bin/firefox wrapper script for using custom (older) firefox version only when running Robot Framework tests
#!/bin/bash
if [ "$1" = "-profile" ]; then
exec ${HOME}/firefox-20.0/firefox "$@"
echo Failed to start Firefox
exit 1
fi
exec /usr/bin/firefox "$@"
@xkr47
Copy link
Author

xkr47 commented Nov 19, 2013

Firefox 20.0 quick link:
http://download-installer.cdn.mozilla.net/pub/firefox/releases/20.0/linux-x86_64/en-GB/firefox-20.0.tar.bz2

cd ; tar xf firefox-20.0.tar.bz2 ; mv firefox firefox-20.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment