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

adding instructions for windows users #142

Merged
merged 1 commit into from
Sep 26, 2023
Merged
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
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,20 @@ MusicBox: A MUSICA model for boxes and columns.

Copyright (C) 2020 National Center for Atmospheric Research

# Windows Users

> [!IMPORTANT]
> By default git will checkout the repository with `\r\n`. When running
> `make test`, if you see something related to `BAD COMMAND` or a file not found issue
> it is most likely because all of your files are using windows line endings instead of linux line endings.
> Because all of our docker files are based off of linux, things will fail.

To fix this, please configure git to use linux line endings.

```
git config --global core.autocrlf false
```

# Install and run from local git clone

```
Expand Down
Loading