Browse Source

github-ci: add --force-removal-of-dependent-packages

Without this option, a package gets installed with its dependencies
but those do not get removed, causing issues later on with other
packages.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
lilik-openwrt-22.03
Rosen Penev 4 years ago
parent
commit
836b4e1c73
No known key found for this signature in database GPG Key ID: 36D31CFA845F0E3B
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      .github/workflows/entrypoint.sh

+ 1
- 1
.github/workflows/entrypoint.sh View File

@ -28,5 +28,5 @@ for PKG in /ci/*.ipk; do
echo "No test.sh script available"
fi
opkg remove "$PKG_NAME"
opkg remove "$PKG_NAME" --force-removal-of-dependent-packages --force-remove
done

Loading…
Cancel
Save