mirror of
https://cagebreak.project-repo.co/cagebreak.git
synced 2026-08-19 03:54:18 +02:00
16 lines
391 B
Bash
16 lines
391 B
Bash
#!/bin/bash
|
|
# Copyright 2023, project-repo and the cagebreak contributors
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
RESULT=0
|
|
|
|
set -x
|
|
# shellcheck disable=2164
|
|
cd "${MESONCURRENTCONFIGDIR}/test"
|
|
# shellcheck disable=2046
|
|
shellcheck --source-path=../example_scripts/ $(ls -Itesting-configurations) || RESULT=1
|
|
|
|
cd "${MESONCURRENTCONFIGDIR}/example_scripts/" || RESULT=1
|
|
shellcheck ./*
|
|
|
|
exit "${RESULT}"
|