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

Change suggested install location from ~/local to ~/.local #12

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ cd odc
# Setup environment variables (edit as needed)
SRC_DIR=$(pwd)
BUILD_DIR=build
INSTALL_DIR=$HOME/local
INSTALL_DIR=$HOME/.local
export eckit_DIR=$INSTALL_DIR # set to eckit install prefix

# Create the the build directory
Expand Down
2 changes: 1 addition & 1 deletion docs/content/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ To run the test suite, you can use the following command:
# Setup environment variables (edit as needed)
SRC_DIR=$(pwd)
BUILD_DIR=build
export eckit_DIR=$HOME/local # set to eckit prefix
export eckit_DIR=$HOME/.local # set to eckit prefix

# Create the the build directory
mkdir $BUILD_DIR
Expand Down
2 changes: 1 addition & 1 deletion docs/content/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Build & Install
# Setup environment variables (edit as needed)
SRC_DIR=$(pwd)
BUILD_DIR=build
INSTALL_DIR=$HOME/local
INSTALL_DIR=$HOME/.local
export eckit_DIR=$INSTALL_DIR # set to eckit install prefix

# Create the the build directory
Expand Down