1
0
mirror of https://github.com/juanfont/headscale.git synced 2024-12-20 19:09:07 +01:00

Return the results on error

This commit is contained in:
Juan Font Alonso 2022-09-07 23:53:31 +02:00
parent b27b789e28
commit cb70d7c705

View File

@ -121,7 +121,7 @@ func ExecuteCommand(
return stdout.String(), nil
case <-time.After(execConfig.timeout):
return "", fmt.Errorf("command timed out after %s", execConfig.timeout)
return stderr.String(), fmt.Errorf("command timed out after %s", execConfig.timeout)
}
}