Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
551abfcb
Commit
551abfcb
authored
Jun 16, 2016
by
Felipe Vargas
Committed by
Marc Cornellà
Jun 16, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove undesirable hardcoding of PATH into zshrc (#4925)
See robbyrussell@b67961d
parent
46c0d959
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
7 deletions
+1
-7
zshrc.zsh-template
templates/zshrc.zsh-template
+1
-1
install.sh
tools/install.sh
+0
-6
No files found.
templates/zshrc.zsh-template
View file @
551abfcb
...
...
@@ -53,7 +53,7 @@ plugins=(git)
# User configuration
export PATH=$HOME/bin:/usr/local/bin:$PATH
# export PATH="/usr/bin:/bin:/usr/sbin:/sbin:$PATH"
# export MANPATH="/usr/local/man:$MANPATH"
source $ZSH/oh-my-zsh.sh
...
...
tools/install.sh
View file @
551abfcb
...
...
@@ -80,12 +80,6 @@ main() {
"
~/.zshrc
>
~/.zshrc-omztemp
mv
-f
~/.zshrc-omztemp ~/.zshrc
printf
"
${
BLUE
}
Copying your current PATH and adding it to the end of ~/.zshrc for you.
${
NORMAL
}
\n
"
sed
"/export PATH=/ c
\\
export PATH=
\"
$PATH
\"
"
~/.zshrc
>
~/.zshrc-omztemp
mv
-f
~/.zshrc-omztemp ~/.zshrc
# If this user's login shell is not already "zsh", attempt to switch.
TEST_CURRENT_SHELL
=
$(
expr
"
$SHELL
"
:
'.*/\(.*\)'
)
if
[
"
$TEST_CURRENT_SHELL
"
!=
"zsh"
]
;
then
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment