Skip to content

Commit

Permalink
Removed possible bashism. source -> .
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Apr 19, 2010
1 parent ade4905 commit 36f105c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions docs/installation.rst
Expand Up @@ -69,7 +69,11 @@ within::
Now you only have to activate it, whenever you work with it. On OS X and
Linux do the following::

$ source env/bin/activate
$ . env/bin/activate

(Note the whitespace between the dot and the script name. This means
execute this file in context of the shell. If the dot does not work for
whatever reason in your shell, try substituting it with ``source``)

If you are a Windows user, the following command is for you::

Expand Down Expand Up @@ -111,7 +115,7 @@ Get the git checkout in a new virtualenv and run in develop mode::
Initialized empty Git repository in ~/dev/flask/.git/
$ cd flask
$ virtualenv env
$ source env/bin/activate
$ . env/bin/activate
New python executable in env/bin/python
Installing setuptools............done.
$ python setup.py develop
Expand All @@ -127,7 +131,7 @@ To just get the development version without git, do this instead::
$ mkdir flask
$ cd flask
$ virtualenv env
$ source env/bin/activate
$ . env/bin/activate
New python executable in env/bin/python
Installing setuptools............done.
$ easy_install Flask==dev
Expand Down

0 comments on commit 36f105c

Please sign in to comment.