We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7415a62 commit 24a77d8Copy full SHA for 24a77d8
1 file changed
smoke.sh
@@ -148,7 +148,8 @@ else
148
fi
149
150
# Daemon log path for diagnostics on failure
151
-DAEMON_LOG="$HOME/.config/kast/logs/standalone-daemon.log"
+DAEMON_LOG="$(python3 -c "import hashlib,os; wr=os.path.realpath('$WORKSPACE_ROOT'); print(os.path.expanduser('~/.config/kast/logs/' + hashlib.sha256(wr.encode()).hexdigest()[:12] + '/standalone-daemon.log'))" 2>/dev/null || echo '')"
152
+
153
dump_daemon_log() {
154
if [ -f "$DAEMON_LOG" ]; then
155
log "--- Last 60 lines of daemon log ---"
0 commit comments