Skip to content

Commit

Permalink
Get rid of bin references.
Browse files Browse the repository at this point in the history
Fixes #25
  • Loading branch information
LPGhatguy committed Mar 23, 2018
1 parent 6d9a7a9 commit 730dcd6
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,18 @@ To get started working on Rodux, you'll need:
* [Luacheck](https://github.com/mpeterv/luacheck) (`luarocks install luacheck`)
* [LuaCov](https://keplerproject.github.io/luacov) (`luarocks install luacov`)

Once you have all of these installed, you can run `lua bin/install-dependencies.lua` script to grab a couple additional local dependencies automatically.
Before the tests will work, make sure you have all of the repository's Git submodules installed. If you haven't cloned it yet, you can use:

```sh
git clone --recurse-submodules https://github.com/Roblox/rodux.git
```

If you've already cloned the Rodux repository, you can use:

```sh
git submodule init
git submodule update
```

Finally, you can run all of Rodux's tests with:

Expand Down

0 comments on commit 730dcd6

Please sign in to comment.