File tree Expand file tree Collapse file tree 3 files changed +26
-3
lines changed Expand file tree Collapse file tree 3 files changed +26
-3
lines changed Original file line number Diff line number Diff line change @@ -102,9 +102,6 @@ if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
102
102
. /etc/bash_completion
103
103
fi
104
104
105
- export PATH=" $HOME /.rbenv/bin:$PATH "
106
- eval " $( rbenv init -) "
107
-
108
105
export ES_HEAP_SIZE=128m
109
106
110
107
export GOPATH=$HOME /go
Original file line number Diff line number Diff line change
1
+ # ~/.profile: executed by the command interpreter for login shells.
2
+ # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
3
+ # exists.
4
+ # see /usr/share/doc/bash/examples/startup-files for examples.
5
+ # the files are located in the bash-doc package.
6
+
7
+ # the default umask is set in /etc/profile; for setting the umask
8
+ # for ssh logins, install and configure the libpam-umask package.
9
+ # umask 022
10
+
11
+ # if running bash
12
+ if [ -n " $BASH_VERSION " ]; then
13
+ # include .bashrc if it exists
14
+ if [ -f " $HOME /.bashrc" ]; then
15
+ . " $HOME /.bashrc"
16
+ fi
17
+ fi
18
+
19
+ # set PATH so it includes user's private bin if it exists
20
+ if [ -d " $HOME /bin" ] ; then
21
+ PATH=" $HOME /bin:$PATH "
22
+ fi
23
+
24
+ export PATH=" $HOME /.rbenv/bin:$PATH "
25
+ eval " $( rbenv init -) "
Original file line number Diff line number Diff line change @@ -31,4 +31,5 @@ cp ~/.vimrc vimrc
31
31
cp /etc/systemd/system/sniff.service .
32
32
cp /opt/sniff/sniff.json .
33
33
cp ~ /.bashrc .
34
+ cp ~ /.profile .
34
35
cp /etc/gitweb.conf .
You can’t perform that action at this time.
0 commit comments