Skip to content

Commit

Permalink
fix n8l::create_load_scripts() calling params
Browse files Browse the repository at this point in the history
The number of parameters and the position order were changed in #74.
  • Loading branch information
jhoblitt committed Sep 27, 2017
1 parent 64f0cf5 commit ad84f53
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/newinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1111,7 +1111,11 @@ n8l::main() {
# Create the environment loader scripts
# shellcheck disable=SC2153
# it can not know that MINICONDA_PATH is created by eval
n8l::create_load_scripts "$LSST_HOME" "$MINICONDA_PATH"
# shellcheck disable=SC2086
n8l::create_load_scripts \
"$LSST_HOME" \
"$EUPS_PKGROOT" \
$MINICONDA_PATH

# Helpful message about what to do next
n8l::print_greeting
Expand Down

0 comments on commit ad84f53

Please sign in to comment.