diff --git a/rpm/nsd-app-wrap.spec b/rpm/nsd-app-wrap.spec index e50535bc79eeaeaf882dcfdd9585061e195aeefd..28c346cb3170a36eead8347607768f9c1ded79c9 100644 --- a/rpm/nsd-app-wrap.spec +++ b/rpm/nsd-app-wrap.spec @@ -1,5 +1,5 @@ Name: nsd-app-wrap -Version: 1.95 +Version: 1.96 Release: 1%{?dist} Summary: Wrapper scripts to launch python applications installed via anaconda Vendor: Peter F. Peterson @@ -106,6 +106,9 @@ install -m 644 desktop/ibeatles.desktop %{buildroot}%{_datadir}/a %changelog +* Mon Jun 30 2025 Glass Elsarboukh +- Update command from RefRed to refred + * Mon Jun 16 2025 John Hetrick - Renamed snapblue to snapwrap diff --git a/src/refred b/src/refred index 994c1a9049823a8034941af4fa9bc3cee667a078..2bf4bc49765951fe473f62e9dcf84fc643173928 100644 --- a/src/refred +++ b/src/refred @@ -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,7 @@ fi . /bin/nsd-app-wrap.sh # put together arguments - conda_env, application, argv -args=("${CONDA_ENVIRON}" "RefRed" "$@") +args=("${CONDA_ENVIRON}" "${CMD}" "$@") + # launch the tool activate_and_launch "${args[@]}"