From a213f1f1d2c2b93e36e728e3525d4d001bd383f9 Mon Sep 17 00:00:00 2001 From: Matheus Felipe <50463866+matheusfelipeog@users.noreply.github.com> Date: Thu, 10 Jun 2021 01:34:25 -0300 Subject: [PATCH] Remove unused main.yml file --- build/main.sh | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100755 build/main.sh diff --git a/build/main.sh b/build/main.sh deleted file mode 100755 index 86e08291..00000000 --- a/build/main.sh +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/bash - -FORMAT_FILE=../README.md -echo "running format validation..." -./validate_format.py $FORMAT_FILE -if [[ $? != 0 ]]; then - echo "format validation failed!" - exit 1 -fi -echo "format validation passed!" -if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then - echo "running on $TRAVIS_BRANCH branch - skipping Pull Request logic" - exit 0 -fi - -echo "running on Pull Request #$TRAVIS_PULL_REQUEST" -DIFF_URL="https://patch-diff.githubusercontent.com/raw/toddmotto/public-apis/pull/$TRAVIS_PULL_REQUEST.diff" -curl $DIFF_URL > diff.txt -echo "------- BEGIN DIFF -------" -cat diff.txt -echo "-------- END DIFF --------" -cat diff.txt | egrep "\+" > additions.txt -echo "------ BEGIN ADDITIONS -----" -cat additions.txt -echo "------- END ADDITIONS ------" -LINK_FILE=additions.txt - -echo "running link validation..." -./validate_links.py $LINK_FILE -if [[ $? != 0 ]]; then - echo "link validation failed!" - exit 1 -else - echo "link validation passed!" -fi