Sha256: f45ceb42c39f62eda8b0e2750a135571d036ed39494d30b4a3da30b786d20c44

Contents?: true

Size: 1.09 KB

Versions: 4

Compression:

Stored size: 1.09 KB

Contents

# use a temporary file for history
HISTFILE=<%= history_file %>

# don't truncate the history file on exit
HISTFILESIZE=-1

# keep a very long history in memory, that will
# be copied to HISTFILE on exit
# Negative values (do not limit) will not work
# in some Bash versions
HISTSIZE=10000

# don't keep timestamps in history
unset HISTTIMEFORMAT

# don't skip any command
HISTCONTROL=""

# change prompt
PS1="\[$(tput bold)\]\[\033[38;5;11m\]dry-running\[$(tput sgr0)\]\[$(tput sgr0)\]\[\033[38;5;15m\]:\w\\$ \[$(tput sgr0)\]"

# add default commandline switches

<% if !ant_in_kit %>
echo -e "\e[91mWARNING: ant executable file not found in kit/, please check that it is present and executable."
echo -e "\e[91mDefaulting to system-provided ant, this could make your builds non-reproducible."
<% end %>
alias ant='<%= ant_commandline %>'

<% if !mvn_in_kit %>
echo -e "\e[91mWARNING: mvn executable file not found in kit/, please check that it is present and executable."
echo -e "\e[91mDefaulting to system-provided mvn, this could make your builds non-reproducible."
<% end %>
alias mvn='<%= mvn_commandline %>'

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
tetra-2.0.5 lib/template/bashrc
tetra-2.0.4 lib/template/bashrc
tetra-2.0.3 lib/template/bashrc
tetra-2.0.2 lib/template/bashrc