Commit 9b7e1ee1 authored by Glass's avatar Glass Committed by Gibbs, Ian
Browse files

rebase main

parent ca5eade3
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -5,10 +5,14 @@ CONDA_ENVIRON=refred
if [ -n "$1" ]; then
  if [ "$1" == "--dev" ]; then
    CONDA_ENVIRON=refred-dev
    CMD=refred
    shift # drop this argument
  elif [ "$1" == "--qa" ]; then
    CONDA_ENVIRON=refred-qa
    CMD=refred
    shift # drop this argument
  else
    CMD=RefRed
  fi
fi

@@ -18,6 +22,8 @@ fi
  . /bin/nsd-app-wrap.sh

# put together arguments - conda_env, application, argv
args=("${CONDA_ENVIRON}" "refred" "$@")
args=("${CONDA_ENVIRON}" "${CMD}" "$@")
echo "${args[@]}"
exit
# launch the tool
activate_and_launch "${args[@]}"