This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| CONSOLE_RED="\033[2;31m" | |
| CONSOLE_GREEN="\033[2;32m" | |
| CONSOLE_CLEAR="\033[0m" | |
| JENKINS_SERVER=http://my_jenkins_server | |
| JOB=$1 | |
| JOB_QUERY=/job/${JOB} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Zenburn color theme for the color GNU ls utility. | |
| # Ivaylo Kuzev <ivkuzev@gmail.com>, 2014 | |
| # Term Section | |
| TERM Eterm | |
| TERM ansi | |
| TERM color-xterm | |
| TERM con132x25 | |
| TERM con132x30 | |
| TERM con132x43 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # This script will setup Evm and Cask on Travis to use for Emacs Lisp testing. | |
| # | |
| # In .travis.yml, add Evm and Cask to PATH. | |
| # | |
| # - export PATH="/home/travis/.cask/bin:$PATH" | |
| # - export PATH="/home/travis/.evm/bin:$PATH" | |
| sudo mkdir /usr/local/evm |