Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix an issue in collect-info.sh, need to mkdir /persist/eve-info #4147

Merged
merged 1 commit into from
Aug 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pkg/debug/scripts/collect-info.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Script version, don't forget to bump up once something is changed

VERSION=28
VERSION=29
# Add required packages here, it will be passed to "apk add".
# Once something added here don't forget to add the same package
# to the Dockerfile ('ENV PKGS' line) of the debug container,
Expand Down Expand Up @@ -173,6 +173,7 @@ echo "- basic setup"
TMP_DIR=$(mktemp -d -t -p /persist/tmp/)
LOG_TMP_DIR="$TMP_DIR/dayslogs"
DIR="$TMP_DIR/$INFO_DIR_SUFFIX"
mkdir -p "/persist/eve-info"
mkdir -p "$DIR"
mkdir -p "$DIR/network"

Expand Down
Loading