feat(justfiles): Fix outdated comment

This commit is contained in:
lorduskordus 2024-06-28 19:45:49 +02:00
parent eb1eff4a87
commit 5552f66a9e

View file

@ -70,7 +70,7 @@ for SELECTED in "${CONFIG_SELECTION[@]}"; do
# Create an import line
IMPORT_LINE="import \"${DEST_FOLDER}/${JUSTFILE}\""
# Abort if import line already exists, else append it to import file
# Skip the import line if it already exists, else append it to import file
if grep -wq "${IMPORT_LINE}" "${IMPORT_FILE}"; then
echo "- Skipped: '${IMPORT_LINE}' (already present)"
else