Skip to content

Commit

Permalink
Changed installation instructions #371
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispysoft committed Jan 2, 2017
1 parent ead7014 commit e88d415
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions docs/de/documentation/cli-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Postgres.app beinhaltet auch einige Tools für die Kommandozeile. Damit du sie v
Am einfachsten geht das mit:

```bash
sudo mkdir -p /etc/paths.d &&
echo /Applications/Postgres.app/Contents/Versions/latest/bin | sudo tee /etc/paths.d/postgresapp
```

Expand Down
2 changes: 1 addition & 1 deletion docs/de/documentation/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Wenn du von der Kommandozeile aus arbeiten willst, solltest du deinen `$PATH` ko
Am einfachsten geht das mit:

```bash
echo /Applications/Postgres.app/Contents/Versions/latest/bin | sudo tee /etc/paths.d/postgresapp
sudo mkdir -p /etc/paths.d && echo /Applications/Postgres.app/Contents/Versions/latest/bin | sudo tee /etc/paths.d/postgresapp
```

Für Details siehe [Command Line Tools](cli-tools.html).
Expand Down
4 changes: 2 additions & 2 deletions docs/de/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Installation
</li>
<li>
<p>Optional: Um die Command Line Tools nutzen zu können, musst du deinen <tt>$PATH</tt> konfigurieren:</p>
<pre>echo /Applications/Postgres.app/Contents/Versions/latest/bin | sudo tee /etc/paths.d/postgresapp</pre>
<pre><code>sudo mkdir -p /etc/paths.d &&<br/>echo /Applications/Postgres.app/Contents/Versions/latest/bin | sudo tee /etc/paths.d/postgresapp</code></pre>
</li>
</ul>

Expand Down Expand Up @@ -309,4 +309,4 @@ Postgres.app, PostgreSQL und alle verwendeten Extensions sind unter der [Postgre
Die veröffentlichten binaries enthalten auch noch OpenSSL ([OpenSSL Lizenz](https://www.openssl.org/source/license.html)), PostGIS ([GPLv2](http://opensource.org/licenses/gpl-2.0)), und plv8 ([3 clause BSD](http://opensource.org/licenses/BSD-3-Clause)).

Postgres.app wird derzeit von [Jakob Egger](https://github.com/jakob) und [Chris Pastl](https://github.com/chrispysoft) weiterentwickelt und betreut.
Postgres.app wurde ursprünglich von [Mattt Thompson](https://github.com/mattt) entwickelt.
Postgres.app wurde ursprünglich von [Mattt Thompson](https://github.com/mattt) entwickelt.
1 change: 1 addition & 0 deletions docs/documentation/cli-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Postgres.app includes many command line tools. If you want to use them, you must
The easiest way to configure your PATH is to execute the following command:

```bash
sudo mkdir -p /etc/paths.d &&
echo /Applications/Postgres.app/Contents/Versions/latest/bin | sudo tee /etc/paths.d/postgresapp
```

Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Installing Postgres.app
</li>
<li>
<p>Configure your <tt>$PATH</tt> to use the included command line tools (optional):</p>
<pre><code>echo /Applications/Postgres.app/Contents/Versions/latest/bin | sudo tee /etc/paths.d/postgresapp</code></pre>
<pre><code>sudo mkdir -p /etc/paths.d &&<br/>echo /Applications/Postgres.app/Contents/Versions/latest/bin | sudo tee /etc/paths.d/postgresapp</code></pre>
</li>
</ul>

Expand Down Expand Up @@ -312,4 +312,4 @@ License
Postgres.app, PostgreSQL, and its extensions are released under the [PostgreSQL License](http://www.postgresql.org/about/licence/).
The released binaries also include OpenSSL ([OpenSSL License](https://www.openssl.org/source/license.html)), PostGIS ([GPLv2](http://opensource.org/licenses/gpl-2.0)), and plv8 ([3 clause BSD](http://opensource.org/licenses/BSD-3-Clause)).

Postgres.app is maintained by [Jakob Egger](https://github.com/jakob) and [Chris Pastl](https://github.com/chrispysoft). It was originally created by [Mattt Thompson](https://github.com/mattt).
Postgres.app is maintained by [Jakob Egger](https://github.com/jakob) and [Chris Pastl](https://github.com/chrispysoft). It was originally created by [Mattt Thompson](https://github.com/mattt).

0 comments on commit e88d415

Please sign in to comment.