1
0
Fork 0

If the plugin contains submodules, one of those submodules may be selected by accident.

This commit is contained in:
Kyle M Hall 2020-04-16 15:00:31 -04:00
parent 9ee9df19a6
commit b62ed65111
2 changed files with 5 additions and 3 deletions

View File

@ -4,9 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [1.0.2] - 2020-04-16
### Changed
- If the plugin contains submodules, one of those submodules may be selected by accident. This should be fixed.
## [1.0.0] - 2020-04-16
## [1.0.1] - 2020-04-16
### Changed
- Wrong directory was being checked for readme and changelog files

View File

@ -19,7 +19,7 @@ mkdir dist
cp -r Koha dist/.
cd dist
PLUGIN_MODULE=$(find . -regex '\./Koha/Plugin/.*[A-Za-z]*\.pm$' | sed '1q;d')
PLUGIN_MODULE=$(find . -regex '\./Koha/Plugin/.*[A-Za-z]*\.pm$' | tail -1 | sed '1q;d')
echo "PLUGIN MODULE: $PLUGIN_MODULE"
META_YML=$(find . -regex '\./Koha/Plugin/.*[A-Za-z]*/META\.yml$' | sed '1q;d')