dotfiles/config/shared/bin/dev-tmux-wrapper.sh
2025-11-03 06:08:42 +02:00

13 lines
171 B
Bash
Executable File

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