Skip to content

Commit

Permalink
apiserver: upgrade Debendencies
Browse files Browse the repository at this point in the history
  • Loading branch information
FooBarWidget committed Aug 21, 2024
1 parent c49c751 commit e4be2be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/apiserver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
BUNDLE_PATH: vendor/bundle
BUNDLE_WITH: ci

- name: Infer library dependencies
- name: Detect library dependencies
run: bundle exec debendencies . -o dpkg-dependencies.txt --tee
working-directory: apiserver
env:
Expand Down
2 changes: 1 addition & 1 deletion ansible/files/apiserver-deployer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ else
mkdir "${TARGET_DIR}.tmp"
tar --use-compress-program=unzstd -xf "/tmp/$ASSET_NAME" -C "${TARGET_DIR}.tmp"
DPKG_DEPENDENCIES=$(cat "${TARGET_DIR}.tmp/dpkg-dependencies.txt")
if [[ -z "$DPKG_DEPENDENCIES" ]]; then
if [[ -n "$DPKG_DEPENDENCIES" ]]; then
echo "Installing dependencies: $DPKG_DEPENDENCIES"
apt satisfy -y --no-install-recommends --no-install-suggests "$DPKG_DEPENDENCIES"
fi
Expand Down

0 comments on commit e4be2be

Please sign in to comment.