![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/rentpix.corals.io/vendor/swagger-api/swagger-ui/release/ |
#!/bin/bash CURRENT_VERSION=$1 NEXT_VERSION=$2 CURRENT_MAJOR=${CURRENT_VERSION:0:1} NEXT_MAJOR=${NEXT_VERSION:0:1} if [ "$CURRENT_MAJOR" -ne "$NEXT_MAJOR" ] ; then if [ "$BREAKING_OKAY" = "true" ]; then echo "breaking change detected but BREAKING_OKAY is set; continuing." && exit 0; else echo "breaking change detected and BREAKING_OKAY is not set; aborting." && exit 1; fi; fi; echo "next version is not a breaking change; continuing.";