Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

small typos in docs #175

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions pages/docs/user-docs/docs-apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ path nonsense? Don't worry, you don't. You can just use environment variables in
singularity exec --app foo foobar.simg env | grep foo
```

Let's talk about the output of the above in sections, you will notice some interesting things! First, notice that the app's `bin` has been added to the path, and it's `lib` added to the `LD_LIBRARY_PATH`. This means that anything you drop in either will automatically be added. You don't need to make these folders either, they are created for you.
Let's talk about the output of the above in sections, you will notice some interesting things! First, notice that the app's `bin` has been added to the path, and its `lib` added to the `LD_LIBRARY_PATH`. This means that anything you drop in either will be automatically added. You don't have to create those folders neither, they'll be created for you.

```
LD_LIBRARY_PATH=/scif/apps/foo/lib::/.singularity.d/libs
Expand Down Expand Up @@ -209,7 +209,7 @@ We can summarize these observations about using apps:
- the lib folder in foo's base is added to the LD_LIBRARY_PATH
- the bin folder is added to the path
- locations for input, output, and general data are exposed. It's up to you how you use these, but you can predictably know that a well made app will look for inputs and outputs in it's specific folder.
- environment variables are provided for the app's root, it's data, and it's name
- environment variables are provided for the app's root, its data and its name


### Sections
Expand Down