mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
5941419cd4
Remove payload checks for aio now that its deprecated. PR Close #56000
13 lines
296 B
Bash
Executable File
13 lines
296 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu -o pipefail
|
|
|
|
readonly thisDir=$(cd $(dirname $0); pwd)
|
|
readonly parentDir=$(dirname $thisDir)
|
|
readonly target=${1:-aio}
|
|
readonly PROJECT_ROOT=$(realpath "$(dirname ${thisDir})/..")
|
|
|
|
|
|
echo "Payload checks are disabled now as we no longe publish to this branch"
|
|
exit 0
|