diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,9 +7,9 @@ * Install `src/basic.bash` to `/path/to/basic.bash.` * At the very beginning of a script (after the shebang): - `include /path/to/basic.bash || exit 1` -* If a script includes other libraries, these should be included after - `basic.bash`, which will then also apply to those. + `source /path/to/basic.bash || exit 1` +* If a script includes (`source`s) other libraries, these should be included + after `basic.bash`, which will then also apply to those. * The `basic.bash` library should not be included in other libraries, except when these are meant as wrappers of `basic.bash`, providing additional functionality. |