Skip to content

Commit

Permalink
Remove reference to module init file, which is now part of the config.
Browse files Browse the repository at this point in the history
  • Loading branch information
tskisner committed Jan 30, 2024
1 parent 814b11b commit 8a2e6d9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions soconda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ show_help () {
echo " [-b <conda base install (if not activated)>]" >&2
echo " [-v <version (git version used by default)>]" >&2
echo " [-m <modulefile dir (default is <env>/modulefiles)>]" >&2
echo " [-i <file with modulefile commands to load dependencies> ]" >&2
echo "" >&2
echo " Create a conda environment for Simons Observatory." >&2
echo "" >&2
Expand All @@ -25,9 +24,8 @@ envname=""
config=""
version=""
moduledir=""
modinit=""

while getopts ":e:c:b:v:m:i:" opt; do
while getopts ":e:c:b:v:m:" opt; do
case $opt in
e)
envname=$OPTARG
Expand Down

0 comments on commit 8a2e6d9

Please sign in to comment.