Skip to content

Commit

Permalink
(re-)fix bash export command in Binary Installation instructions
Browse files Browse the repository at this point in the history
In my last pull request I proposed to "harmonize" the two bash export commands that were used in this file, but actually the context of the second one is different (it isn't suggested to cd into the julia directory before, while in the first example it is). This commit restores the correct command.
  • Loading branch information
waldyrious committed Aug 8, 2012
1 parent 8bf743c commit cffe41f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ For example, if you are on an OS X (Darwin) x86/64 system, do the following:

You can either run the `julia` executable using its full path in the directory created above, or add that directory to your executable path so that you can run the julia program from anywhere (in the current shell session):

export PATH="$(pwd):$PATH"
export PATH="$(pwd)/julia:$PATH"

Now you should be able to run julia like this:

Expand Down

0 comments on commit cffe41f

Please sign in to comment.