Skip to content

Commit

Permalink
Fix Run Recent Command Caching Issue (#22867)
Browse files Browse the repository at this point in the history
Resolves: #22811

Fixing caching issue where users were experiencing cached
success/failure decoration that were impacted when using `Terminal: Run
Recent Command` on success/failure commands
  • Loading branch information
anthonykim1 authored Feb 7, 2024
1 parent c0bf1b7 commit d674a17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pythonFiles/pythonrc.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __str__(self):
exit_code = 1
else:
exit_code = 0

self.hooks.failure_flag = False
# Guide following official VS Code doc for shell integration sequence:
result = ""
# For non-windows allow recent_command history.
Expand Down

0 comments on commit d674a17

Please sign in to comment.