You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
eval"$(bpm init bash)"# replace 'bash' with your shell
35
35
```
36
36
37
+
STATUS: ALPHA
38
+
37
39
See [Getting Started](./docs/getting-started.md) for more details
38
40
41
+
## Local Package Development
42
+
43
+
If you are working on a project, and want to pull in a dependency, say [bash-args](https://github.com/eankeen/bash-args), the workflow looks like this
44
+
45
+
To use the packages, simply append to the `PATH` variable in your script entrypoint (script.sh in the example below). Note that exporting it isn't required because it's already an exported variable
46
+
47
+
```sh
48
+
mkdir 'my-project'&&cd'my-project'
49
+
50
+
# Creating a 'bpm.toml' is required so bpm knows where
0 commit comments