OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
API
/
swagger-ui-5.17.14
/
release
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/07/2024 04:33:48 AM
rwxr-xr-x
📄
.release-it.json
730 bytes
08/07/2024 04:33:44 AM
rw-r--r--
📄
check-for-breaking-changes.sh
454 bytes
08/07/2024 04:33:44 AM
rw-r--r--
📄
get-changelog.sh
381 bytes
08/07/2024 04:33:44 AM
rw-r--r--
Editing: check-for-breaking-changes.sh
Close
#!/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.";