cloudflare/cloudflare-typescript

Public

mirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v7

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

bin/check-release-environment

18lines · modecode

1#!/usr/bin/env bash
2
3errors=()
4
5lenErrors=${#errors[@]}
6
7if [[ lenErrors -gt 0 ]]; then
8 echo -e "Found the following errors in the release environment:\n"
9
10 for error in "${errors[@]}"; do
11 echo -e "- $error\n"
12 done
13
14 exit 1
15fi
16
17echo "The environment is ready to push releases!"
18
19