Skip to content

Commit

Permalink
build/get_new_operator_sdk.sh: Add -x to add debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
elfiesmelfie committed Jun 27, 2023
1 parent d6bcb5d commit 67e0db6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build/get_new_operator_sdk.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

set -x

REL=$(dirname "$0")
ARCH=$(case $(uname -m) in x86_64) echo -n amd64 ;; aarch64) echo -n arm64 ;; *) echo -n $(uname -m) ;; esac)
OS=$(uname | awk '{print tolower($0)}')
Expand All @@ -14,3 +16,4 @@ if [[ ! -f ${REL}/working/operator-sdk-${VERSION} ]]; then
ln -s operator-sdk-${VERSION} ${REL}/working/operator-sdk
fi

set +x

0 comments on commit 67e0db6

Please sign in to comment.