feat/devflow

This commit is contained in:
2025-11-03 05:56:44 +02:00
parent 78ea031fd6
commit 60834ccae1
9 changed files with 444 additions and 601 deletions

View File

@@ -0,0 +1,12 @@
#!/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