Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Improve maintenance script #387

Merged
merged 1 commit into from
Jun 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## FIWARE Big Bang v0.38.0-next

- Improve maintenance script (#387)
- Update Orion to 4.0.0 (#386)
- Clarifies instance number variable for Node-RED (#385)

Expand Down
2 changes: 1 addition & 1 deletion maintenance/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ RES=$(curl -X POST \
DIR="${NAME}-${TAG//v/}"
mkdir "${DIR}"

for FILE in LICENSE README.md config.sh lets-fiware.sh
for FILE in LICENSE README.md config.sh .config.sh lets-fiware.sh
do
cp -a "${FILE}" "${DIR}/"
done
Expand Down
3 changes: 3 additions & 0 deletions tests/script/lint-config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ set -ue
cd "$(dirname "$0")"
cd ../..

echo "*** diff config.sh .config.sh ***"
diff config.sh .config.sh

. ./config.sh

if [ "${ORION}" != "orion" ]; then
Expand Down
3 changes: 0 additions & 3 deletions tests/script/lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,3 @@ echo "*** lint shellcheck ***"

echo "*** lint yamllint ***"
./tests/script/lint-yamllint.sh

echo "*** config.sh ***"
diff config.sh .config.sh
Loading