Skip to content

Commit

Permalink
fix(bash): quote the timer path
Browse files Browse the repository at this point in the history
resolves #914
  • Loading branch information
JanDeDobbeleer committed Sep 1, 2021
1 parent 49ada34 commit 4ee7205
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/init/omp.bash
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if [[ ! -d "/tmp" ]]; then
TIMER_START="${HOME}/.${USER}.start.$$"
fi

PS0='$(::OMP:: --millis > $TIMER_START)'
PS0='$(::OMP:: --millis > "$TIMER_START")'

function _omp_hook() {
local ret=$?
Expand Down

0 comments on commit 4ee7205

Please sign in to comment.