Skip to content

Commit

Permalink
Fix stuck process when packaging plugins
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Jan 12, 2021
1 parent 7e2ab71 commit 10a41c6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .travis/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,8 @@ ${TRAVIS_BUILD_DIR}/build-plugins.sh ${TARGET} ${PLUGINS}
${TRAVIS_BUILD_DIR}/.cleanup.sh ${TARGET}

# packing of plugins can only be done when doing a full build
# TODO enable packaging plugins when CI works again
# if [ ${LAST_BOOTSTRAP_VERSION} -eq ${BOOTSTRAP_VERSION} ]; then
# ${TRAVIS_BUILD_DIR}/pack-plugins.sh ${TARGET} ${PLUGINS}
# fi
if [ ${LAST_BOOTSTRAP_VERSION} -eq ${BOOTSTRAP_VERSION} ]; then
${TRAVIS_BUILD_DIR}/pack-plugins.sh ${TARGET} ${PLUGINS}
fi

echo ${BOOTSTRAP_VERSION} > ${HOME}/PawPawBuilds/builds/.last-bootstrap-version
2 changes: 1 addition & 1 deletion pack-plugins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ for plugin in ${@}; do

name=$(jq -crM .name ${pfile})
sname=$(echo ${name} | tr -ds '-' '_')
description=$(jq -crM .description ${description})
description=$(jq -crM .description ${pfile})
lv2bundles=($(jq -crM .lv2bundles[] ${pfile}))

if [ "${WIN32}" -eq 1 ]; then
Expand Down

0 comments on commit 10a41c6

Please sign in to comment.