Skip to content

Commit 2dcb315

Browse files
authored
Update install.sh
Delete some debug data
1 parent 8f22692 commit 2dcb315

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

install.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,6 @@ install_klipper_config() {
222222
echo "" >> "${dest}" # Add a blank line
223223
echo -e "[include ktc/base/*.cfg]" >> "${dest}" # Add the section header
224224
echo -e "[include ktc/optional_rrf_compability/*.cfg]" >> "${dest}" # Add the section header
225-
log_imprtant "Added KTC macros to printer.cfg"
226225
else
227226
log_error "[include ktc/base/*.cfg] already exists in printer.cfg - skipping adding it and the optional macros there"
228227
fi
@@ -240,15 +239,13 @@ install_klipper_config() {
240239
if [ ! -d "${KLIPPER_CONFIG_HOME}/ktc/base" ]; then
241240
log_info "Copying base macros to ${KLIPPER_CONFIG_HOME}/ktc"
242241
cp -r ${REPO_DIR}/macros/base ${KLIPPER_CONFIG_HOME}/ktc
243-
# cp ${REPO_DIR}/macros/base/*.cfg ${KLIPPER_CONFIG_HOME}/ktc/base
244242
else
245243
log_error "Base macros already exists in ${KLIPPER_CONFIG_HOME}/ktc/base - skipping copying it there"
246244
fi
247245

248246
if [ ! -d "${KLIPPER_CONFIG_HOME}/ktc/optional_rrf_compability" ]; then
249247
log_info "Copying optional_rrf_compability macros to ${KLIPPER_CONFIG_HOME}/ktc"
250248
cp -r ${REPO_DIR}/macros/optional_rrf_compability ${KLIPPER_CONFIG_HOME}/ktc
251-
# cp ${REPO_DIR}/macros/optional_rrf_compability/*.cfg ${KLIPPER_CONFIG_HOME}/ktc/optional_rrf_compability
252249
else
253250
log_error "Optional RRF compability macros already exists in ${KLIPPER_CONFIG_HOME}/ktc/optional_rrf_compability - skipping copying it there"
254251
fi

0 commit comments

Comments
 (0)