Skip to content

Commit

Permalink
Fix install script typo
Browse files Browse the repository at this point in the history
  • Loading branch information
doctorfree committed May 12, 2024
1 parent 3fcfdab commit ae15a92
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion install
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,11 @@ fixup_conf_shell() {
cp /tmp/kc$$ ${SFILE}
rm -f /tmp/kc$$
fi
} install_kconf() { [ -d ${KCONF} ] || mkdir -p ${KCONF} for py in "${SCRIPT_PATH}"/config/*.py
}

install_kconf() {
[ -d ${KCONF} ] || mkdir -p ${KCONF}
for py in "${SCRIPT_PATH}"/config/*.py
do
[ "${py}" == "${SCRIPT_PATH}/config/*.py" ] && continue
cp "${py}" ${KCONF}
Expand Down

0 comments on commit ae15a92

Please sign in to comment.