mirror of
https://github.com/getsentry/self-hosted.git
synced 2025-12-08 19:46:14 +00:00
fix: Remove the extra space in the log file names (#3212)
Update `_lib.sh` to remove the extra space in the log file name. This fixes the log files name not being included in `.gitinore`
This commit is contained in:
parent
282410abff
commit
1bb22c032d
@ -76,7 +76,7 @@ MINIMIZE_DOWNTIME="${MINIMIZE_DOWNTIME:-}"
|
||||
STOP_TIMEOUT=60
|
||||
|
||||
# Save logs in order to send envelope to Sentry
|
||||
log_file=sentry_"$cmd"_log-$(date +'%Y-%m-%d_%H-%M-%S').txt
|
||||
log_file=sentry_"${cmd%% *}"_log-$(date +'%Y-%m-%d_%H-%M-%S').txt
|
||||
exec &> >(tee -a "$log_file")
|
||||
version=""
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user