Skip to content

Commit a63e955

Browse files
authored
Update Without ZPM install instructions
1 parent 7639c51 commit a63e955

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,15 @@ If ZPM is not installed and you do not plan on installing it, you can still quic
4949
3. Run the following commands
5050
```
5151
Set path="COPIED PATH FROM STEP 2"
52-
Do $system.OBJ.Load(path_"/src/cls/Math/Math.cls,"_path_"/src/inc/Math.inc","ck")
52+
Do $system.OBJ.LoadDir(path_"/src/cls/Math/","ck")
53+
Do $system.OBJ.ImportDir(path_"/src/inc/")
5354
```
55+
This will load Math.Math.cls, Math.Utils.cls, and Math.inc
5456
4. If you would also plan on developing/contributing to this library, run the following command
5557
```
56-
Do $system.OBJ.LoadDir(path_"/src/cls/UnitTests/","ck")
58+
Do $system.OBJ.LoadDir(path_"/src/cls/UnitTests/","ck",,1)
5759
```
60+
This will additionally load the Unit Tests
5861

5962
# Contributing
6063
Please see [the Contributing Guide](https://github.com/psteiwer/ObjectScript-Math/blob/master/CONTRIBUTING.md)

0 commit comments

Comments
 (0)