Browse Source

Fix issue in generate-repology-metadata.sh

android-5
Fredrik Fornwall 7 years ago
parent
commit
32eedb3ef6
  1. 2
      scripts/generate-repology-metadata.sh

2
scripts/generate-repology-metadata.sh

@ -16,7 +16,7 @@ check_package() { # path
if [ "$TERMUX_PKG_DEPENDS" != "" ]; then if [ "$TERMUX_PKG_DEPENDS" != "" ]; then
echo -n " \"depends\": [" echo -n " \"depends\": ["
FIRST_DEP=yes FIRST_DEP=yes
for p in ${TERMUX_PKG_DEPENDS//,/}; do for p in ${TERMUX_PKG_DEPENDS//,/ }; do
if [ $FIRST_DEP = yes ]; then if [ $FIRST_DEP = yes ]; then
FIRST_DEP=no FIRST_DEP=no
else else

Loading…
Cancel
Save