Skip to content

Commit e070ede

Browse files
committed
Use "." not "source" for shell sourcing.
Shell portability from mitsuhiko.
1 parent 5e84817 commit e070ede

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/installation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ folder within::
7373
Now, whenever you want to work on a project, you only have to activate the
7474
corresponding environment. On OS X and Linux, do the following::
7575

76-
$ source venv/bin/activate
76+
$ . venv/bin/activate
7777

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

@@ -117,7 +117,7 @@ Get the git checkout in a new virtualenv and run in development mode::
117117
$ virtualenv venv --distribute
118118
New python executable in venv/bin/python
119119
Installing distribute............done.
120-
$ source venv/bin/activate
120+
$ . venv/bin/activate
121121
$ python setup.py develop
122122
...
123123
Finished processing dependencies for Flask
@@ -131,7 +131,7 @@ To just get the development version without git, do this instead::
131131
$ mkdir flask
132132
$ cd flask
133133
$ virtualenv venv --distribute
134-
$ source venv/bin/activate
134+
$ . venv/bin/activate
135135
New python executable in venv/bin/python
136136
Installing distribute............done.
137137
$ pip install Flask==dev

0 commit comments

Comments
 (0)