Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Copy files from distro's stub filesystem and cli update script #7540

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
4 changes: 2 additions & 2 deletions config/show_config
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ show_config() {
# $DISTRO/config/functions
# $DISTRO/show_config

if [ -f distributions/${DISTRO}/show_config ]; then
. distributions/${DISTRO}/show_config
if [ -f "${DISTRO_DIR}/${DISTRO}/show_config" ]; then
. "${DISTRO_DIR}/${DISTRO}/show_config"
fi
if [ "$(type -t show_distro_config)" = "function" ]; then
show_distro_config
Expand Down
Loading