Skip to content

Commit

Permalink
Removed wpcomsh from update test.
Browse files Browse the repository at this point in the history
  • Loading branch information
zinigor committed Jun 12, 2024
1 parent b2ab817 commit 1a8f0f1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/files/test-plugin-update/prepare-zips.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jq -e '.' <<<"$BETAJSON" &>/dev/null
mkdir work
mkdir zips
while IFS=$'\t' read -r SRC MIRROR SLUG; do
if [[ "$SLUG" == wpcomsh ]]; then
if [[ "$SLUG" == "wpcomsh" ]]; then
echo "Skipping $SLUG, doesn't work on self-hosted sites."
continue
fi
Expand Down
5 changes: 5 additions & 0 deletions .github/files/test-plugin-update/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ function failed {

cd /var/www/html
for SLUG in "${SLUGS[@]}"; do
if [[ "$SLUG" == "wpcomsh" ]]; then
echo "Skipping $SLUG, doesn't work on self-hosted sites."
continue
fi

for FROM in stable trunk dev; do
for HOW in web cli; do
[[ -e "$ZIPDIR/$SLUG-$FROM.zip" ]] || continue
Expand Down

0 comments on commit 1a8f0f1

Please sign in to comment.