Skip to content

Commit

Permalink
Moonraker: fix packages variable name changed (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
GP3D84 authored Oct 2, 2024
1 parent 2ef3989 commit bf0b248
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 bf0b248

Please sign in to comment.