Skip to content

Commit

Permalink
fix(moonraker): PKGLIST variable rename (#298)
Browse files Browse the repository at this point in the history
Replace `PKGLIST` with `PACKAGES` in moonraker module script, following Arksine/moonraker@247640c
  • Loading branch information
ada-phillips authored Aug 4, 2024
1 parent 2e04d34 commit 0d951e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/modules/moonraker/start_chroot_script
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ gitclone MOONRAKER_REPO moonraker

## Step 3: grep PKGLIST from install-moonraker.sh for dependencies
echo_green "Generating packages file ..."
grep "PKGLIST=" "${MN_BUILD_INSTALL_SH}" >> "${MN_BUILD_PACKAGE_FILE}"
grep "PACKAGES=" "${MN_BUILD_INSTALL_SH}" >> "${MN_BUILD_PACKAGE_FILE}"

## Step 4: Rename PKGLIST to Module usable Var
echo_green "Rename variable PKGLIST to MOONRAKER_DEPS ..."
sed -i 's/PKGLIST/MOONRAKER_DEPS/g' "${MN_BUILD_PACKAGE_FILE}"
## Step 4: Rename PACKAGES to Module usable Var
echo_green "Rename variable PACKAGES to MOONRAKER_DEPS ..."
sed -i 's/PACKAGES/MOONRAKER_DEPS/g' "${MN_BUILD_PACKAGE_FILE}"

## Step 5: Source cn_package.lst file
# shellcheck disable=SC1090
Expand Down

0 comments on commit 0d951e4

Please sign in to comment.