Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions install.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ brew install dmd
After installing dmd, you should run:
```
git clone https://github.com/GassaFM/interpr
cd interpr/source
dub build
cd interpr
dmd -of=interpr source/*.d
```
Or, instead of the last line:
You also may use `dub` to build an executable:
```
dmd -of=interpr source/*.d
dub build
```
Now you have an executable file `interpr`.
6 changes: 3 additions & 3 deletions install.ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ brew install dmd
```
git clone https://github.com/GassaFM/interpr
cd interpr
dub build
dmd -of=interpr source/*.d
```
Или вместо последней строчки:
Также можно собрать исполняемый файл при помощи `dub`:
```
dmd -of=interpr source/*.d
dub build
```
Теперь у Вас есть исполняемый файл `interpr`.