summaryrefslogtreecommitdiff
path: root/tools/install.sh
AgeCommit message (Collapse)Author
2014-08-20Replace /usr/bin/env with envFredrik Fornwall
Some environments (such as Android) does not have /usr/bin.
2014-03-30Correct redirection of output from 'hash'Henrik Holm
The intention of the redirection to /dev/null is to hide the output 'hash: no such command: git' since we rely on the exit status. However, the output goes to stderr, so it's stderr that needs to be redirected. For completeness, we redirect both stderr and stdout using '2>&1'. Example: [~]$ hash git > /dev/null [~]$ PATH='' [~]$ hash git > /dev/null hash: no such command: git [~]$ hash git > /dev/null 2>&1 [~]$
2014-03-13Fixing a few quirks in the latest installer updates (quoting ↵Robby Russell
/Users/robbyrussell/.oh-my-zsh and such). Also mentioining our twitter account after install
2014-03-08Abort installer on errorsAndrew Vit
2014-03-08Write install path into .zshrcAndrew Vit
2014-03-08Reference default install path from ZSH variableAndrew Vit
2014-03-08Merge pull request #1402 from sergeylukin/masterRobby Russell
Fix install.sh compatibility with /bin/sh
2013-12-02Merge pull request #1087 from avit/install-templateRobby Russell
Add configuration placeholders to installer template
2013-10-25Add configuration placeholders to installer templateAndrew Vit
Although the zshrc template adds a PATH= string, this is overwritten by the installer script. This allows it to be placed anywhere in the file instead of having to append at the end.
2013-06-30Modify determine the oh-my-zsh installed in non-default path of the installeddongweiming
2013-04-07Added $PATH to PATH in install shellHenry Yan
2012-12-02Fixing conflict in install scriptsProbably Not
2012-11-09Fix /bin/sh compatibility issue in install.shSergey Lukin
2012-10-21Fix color syntaxEric Mathison
2012-06-23Fix finding git issue. ↵Renan Cakirerk
http://stackoverflow.com/questions/592620/check-if-a-program-exists-from-a-bash-script
2012-04-04Added an if-statement to see if git is installedDaniel Lockard
2011-06-03Colorize Install & Upgrade ScriptsAndrew Hodges
Make tools/install.sh and tools/upgrade.sh pretty.
2011-04-18Changed to use which.Arthur Kalmenson
2011-04-18Change URL to https since most corporate environments block git port.Arthur Kalmenson
2011-04-18Make the chsh more reliable.Arthur Kalmenson
2010-08-19Switching to /usr/bin/env zsh instead of /bin/zsh in the installerRobby Russell
2010-05-07Sprinkling some candy on this muffin.Robby Russell
2009-10-16Removed useless elseToon Claes
2009-09-07Updating install process to copy your current environments PATH and adding ↵Robby Russell
it to the bottom of ~/.zshrc.
2009-09-01Updating installer to use the new template file. ~/.zshrc will now be ↵Robby Russell
outside of the repository
2009-08-30Changing order of loading zsh at end of installRobby Russell
2009-08-30Attempting to load zsh properly after auto-installRobby Russell
2009-08-30Checking if .zshrc is a file or a symlink.Robby Russell
2009-08-30Adding an installer toolRobby Russell