Skip to content

Commit

Permalink
Renamed scripts/ to .scripts/
Browse files Browse the repository at this point in the history
  • Loading branch information
pilwon committed Aug 29, 2014
1 parent 08cc01d commit 3706d9f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN \
# Add files.
ADD root/.bashrc /root/.bashrc
ADD root/.gitconfig /root/.gitconfig
ADD root/scripts /root/scripts
ADD root/.scripts /root/.scripts

# Set environment variables.
ENV HOME /root
Expand Down
8 changes: 4 additions & 4 deletions root/.bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ fi

# Shell
export CLICOLOR="1"
if [ -f ~/scripts/git-prompt.sh ]; then
source ~/scripts/git-prompt.sh
if [ -f ~/.scripts/git-prompt.sh ]; then
source ~/.scripts/git-prompt.sh
export GIT_PS1_SHOWDIRTYSTATE="1"
export PS1="\[\033[40m\]\[\033[33m\][ \u@\H:\[\033[32m\]\w\$(__git_ps1 \" \[\033[35m\]{\[\033[36m\]%s\[\033[35m\]}\")\[\033[33m\] ]$\[\033[0m\] "
else
Expand All @@ -46,7 +46,7 @@ fi
export LS_COLORS="di=34:ln=35:so=32:pi=33:ex=1;40:bd=34;40:cd=34;40:su=0;40:sg=0;40:tw=0;40:ow=0;40:"

# Git
source ~/scripts/git-completion.sh
source ~/.scripts/git-completion.sh

# Z
source ~/scripts/z.sh
source ~/.scripts/z.sh
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 3706d9f

Please sign in to comment.