summaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2015-08-30Merge pull request #3613 from apjanke/remove-sed-iRobby Russell
Installer: Remove "sed -i" for portability and hygiene
2015-06-10No input for Update Check defaults to YesHeroCC
2015-05-05Fix 'chsh' by checking '/etc/shells' instead of using 'which'Pablo Tamarit
fix test for chsh in install in case $SHELL is zsh but not the last one in /etc/shells fixes #3026 fixes #3779 fixes #3780
2015-02-20install.sh: Replace nonstandard "sed -i" with sed + mv commands. Makes ↵Andrew Janke
portable to systems whose sed lacks "-i", like OpenBSD.
2015-02-10Merge pull request #3353 from mizabrik/masterRobby Russell
Save ZSH path in newly created .zshrc
2015-01-15Fast installation time by shallow copying git repoNicholas T.
Use `--depth=1` to clone just the lastest version rather than every version in git.
2014-12-15fix(tools/check_for_upgrade): Don't source profileMark Feltner
Reverts #2296, but mostly #1883. There is no need to source ~/.profile when this script is read. oh-my-zsh writes no configuration data in ~/.profile. If the user wishes to use data within ~/.profile, then they should source it in another place. Fixes #2315
2014-11-28Save ZSH path in newly created .zshrcmizabrik
2014-11-06Merge pull request #2946 from moinakg/masterRobby Russell
Solaris portability tweaks.
2014-10-14Change to epoch target in days instead of seconds.Moinak Ghosh
2014-09-17Convert epoch_target from days to seconds.Moinak Ghosh
2014-09-16Update Solaris changes to use OSTYPE and zsh datetime module.Moinak Ghosh
2014-08-31Merge pull request #3049 from strycore/masterRobby Russell
Prevent chsh from running when $SHELL is already zsh
2014-08-31Link to swag in installer... shameless profitingRobby Russell
2014-08-31Adding link to the store for swag in upgrade processRobby Russell
2014-08-21Don't try running chsh if user already runs zshMathieu Comandon
2014-08-20Replace /usr/bin/env with envFredrik Fornwall
Some environments (such as Android) does not have /usr/bin.
2014-07-11Solaris portability tweaks.Moinak Ghosh
2014-06-04Cancel upgrade if $ZSH is not writablen.st
from #2360
2014-05-24fix(tools/check_for_upgrade): Don't source profileMark Feltner
Reverts #2296, but mostly #1883. There is no need to source ~/.profile when this script is read. oh-my-zsh writes no configuration data in ~/.profile. If the user wishes to use data within ~/.profile, then they should source it in another place. Fixes #2315
2014-05-24Write the update file even if `CLOBBER` is unset.Adam Luikart
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-18Revert "Cancel update if the current user doesn't have write permissions for ↵Robby Russell
the oh-my-zsh directory." This reverts commit 152e1e07e0397ecc3f1778ea597d081c33ee8ff4.
2013-12-18Cancel update if the current user doesn't have write permissions for the ↵n.st
oh-my-zsh directory.
2013-12-03source ~/.profile only if it existsPatrick Stadler
2013-12-02Merge pull request #1087 from avit/install-templateRobby Russell
Add configuration placeholders to installer template
2013-12-02Merge pull request #1883 from Stibbons/gsemet_push_source_profile_for_upgradeRobby Russell
source ~/.profile for upgrading (to source the proxy configuration)
2013-12-02Merge pull request #1927 from dongweiming/modifyRobby Russell
Modify determine the oh-my-zsh installed in non-default path of the installed
2013-11-22Add update statisticsValentin Shevko
After the upgrade is interesting to know what's new.
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-09-10Display right prompt in theme chooserGaetan Semet
I didn't found the way to right-align the right prompt properly. Signed-off-by: Gaetan Semet <gaetan@xeberon.net>
2013-06-30Modify determine the oh-my-zsh installed in non-default path of the installeddongweiming
2013-06-25git-pull add --rebase optionUncleBill
2013-06-11source ~/.profile for upgrading (to source the proxy configuration)Gaetan Semet
Signed-off-by: Gaetan Semet <gaetan@xeberon.net>
2013-04-29eliminated unnecessary cd and failing substitutionMarcus Müller
Changing the working directory in a sub-subshell does not change the working directory of the executing shell. The substitution was broken for me on _all_ my machines, so I started looking into the business.
2013-04-12Merge pull request #1651 from deepusudhakar/masterRobby Russell
Escape $ZSH path in upgrade_oh_my_zsh
2013-04-12Merge pull request #1696 from henryyan/masterRobby Russell
Added $PATH to PATH in install shell
2013-04-09Escape spaces in folder name so script won't failGaurav Misra
If the current directory has spaces, the script fails to change paths and fails.
2013-04-07Added $PATH to PATH in install shellHenry Yan
2013-03-10Escape /Users/desudhak/.oh-my-zsh path (previously broke spaces in path)Deepu Sudhakar
2012-12-02Fixing conflict in install scriptsProbably Not
2012-12-01Merge pull request #1370 from ericmathison/syntax-fixRobby Russell
Fix color syntax
2012-11-26Add UPDATE_ZSH_DAYS settingEric Danielson
2012-11-09Fix /bin/sh compatibility issue in install.shSergey Lukin
2012-10-21Fix color syntaxEric Mathison