mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 15:25:57 +00:00
18 lines
321 B
Bash
Executable File
18 lines
321 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
BRANCH=$(git rev-parse --abbrev-ref HEAD)
|
|
|
|
if [ "$BRANCH" != "master" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
CURRENT_VERSION=$(cat package.json | jq -r .version)
|
|
PUBLISHED_VERSION=$(yarn info @human-connection/styleguide version --silent)
|
|
|
|
if [ "$CURRENT_VERSION" == "$PUBLISHED_VERSION" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
|
|
exit 0
|