Verified Commit 2bc104d4 authored by Peterson, Peter's avatar Peterson, Peter
Browse files

Fix shellcheck issue

parent 802d5740
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -4,8 +4,9 @@
# current default is system version
PIXI_ENVIRON=paraview
# import library to do the real work
. "$(dirname "$(realpath "$0")")/nsd-app-wrap.sh" \
   || . /bin/nsd-app-wrap.sh
# shellcheck disable=SC1091
. "$(dirname "$(realpath "$0")")/nsd-app-wrap.sh" ||
    . /bin/nsd-app-wrap.sh

# put together arguments - conda_env, application, argv
args=("${PIXI_ENVIRON}" "paraview" "$@")