Skip to content

Commit 7e87dc6

Browse files
committedApr 13, 2025·
updated Makefile.in
1 parent 6d6bac9 commit 7e87dc6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎Makefile.in

+3-2
Original file line numberDiff line numberDiff line change
@@ -865,14 +865,15 @@ repos:
865865
markdown_replace_repos.sh
866866

867867
mac-exclude-backups:
868-
for path in $(MAC_TIME_MACHINE_BACKUP_EXCLUDE_PATHS); do \
868+
@for path in $(MAC_TIME_MACHINE_BACKUP_EXCLUDE_PATHS); do \
869869
if [[ "$${path:0:1}" != / ]]; then \
870870
path="$$PWD/$path"; \
871871
fi; \
872+
echo "Excluding: $$path"; \
872873
sudo tmutil addexclusion -p "$$path"; \
873874
done
874875

875876
nobackup:
876-
if uname | grep Darwin; then \
877+
if uname | grep -q Darwin; then \
877878
$(MAKE) mac-exclude-backups; \
878879
fi

0 commit comments

Comments
 (0)
Please sign in to comment.