From 5f035f8855266fcd46ba52d7ff6a518cd643ae2f Mon Sep 17 00:00:00 2001 From: Luca Ercole <30255227+erclu@users.noreply.github.com> Date: Thu, 18 Mar 2021 18:56:15 +0100 Subject: [PATCH] fix: remove double invocation of --shell argument --- src/init/omp.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init/omp.bash b/src/init/omp.bash index 3166fc73..c9896e18 100644 --- a/src/init/omp.bash +++ b/src/init/omp.bash @@ -14,7 +14,7 @@ function _omp_hook() { omp_elapsed=$((omp_now-omp_start_time)) rm "$TIMER_START" fi - PS1="$(::OMP:: --config $POSH_THEME --shell bash --error $ret --execution-time $omp_elapsed --shell bash)" + PS1="$(::OMP:: --config $POSH_THEME --shell bash --error $ret --execution-time $omp_elapsed)" return $ret }