Skip to content
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
2 changes: 1 addition & 1 deletion update-pr-stack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ CONFLICT_LABEL="autorestack-needs-conflict-resolution"

# Function to check if a required environment variable is set
check_env_var() {
if [ -z "${!1}" ]; then
if [[ -z "${!1-}" ]]; then
echo "Error: $1 is not set" >&2
exit 1
fi
Expand Down