Files
dotfiles/config/shared/bin/dev-tmux-wrapper.sh
2026-01-28 06:08:32 +02:00

13 lines
172 B
Bash
Executable File

#!/bin/bash
/home/tomas/bin/flow "$@" 2>&1
exit_code=$?
if [ $exit_code -ne 0 ]; then
echo ""
echo "Command: $*"
echo "Failed: exit $exit_code"
fi
exit $exit_code