2018-11-23 13:59:00 +00:00
|
|
|
#!/bin/bash
|
2020-08-30 20:25:40 -04:00
|
|
|
###############################################################################
|
2023-08-16 14:33:14 -04:00
|
|
|
# Copyright (c) 2018, 2023 Kichwa Coders Ltd and others.
|
2020-08-30 20:25:40 -04:00
|
|
|
#
|
|
|
|
# This program and the accompanying materials
|
|
|
|
# are made available under the terms of the Eclipse Public License 2.0
|
|
|
|
# which accompanies this distribution, and is available at
|
|
|
|
# https://www.eclipse.org/legal/epl-2.0/
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: EPL-2.0
|
|
|
|
###############################################################################
|
2018-11-23 13:59:00 +00:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2022-11-11 16:08:15 +01:00
|
|
|
if test ! -z "$(git status -s -uno)"; then
|
|
|
|
echo "You have changes. Please stash them before continuing."
|
2022-11-11 16:44:05 +01:00
|
|
|
exit 1
|
2022-11-11 16:08:15 +01:00
|
|
|
fi
|
|
|
|
|
2020-01-07 06:36:50 -05:00
|
|
|
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
2023-08-16 14:33:14 -04:00
|
|
|
${DIR}/check_code_cleanliness_only.sh
|
|
|
|
${DIR}/check_bundle_versions.sh
|
|
|
|
${DIR}/check_bundle_versions_report.sh
|