add emojis

This commit is contained in:
Mylloon 2023-11-05 15:19:28 +01:00
parent 67c42c895f
commit 10825de7ea
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -193,20 +193,20 @@ sync-windows:
sync:
# Check if at least the platform is supported
ifneq (1, $(filter 1, $(ARCH) $(WSL)))
@echo "Unsupported platform"
@echo "Unsupported platform"
else
# Call target of compatible with all supported platforms
@$(MAKE) sync-dotconfig
@echo ".config directory synced!"
@echo ".config directory synced!"
@echo
@$(MAKE) sync-dotfiles
@echo "Dotfiles synced!"
@echo "Dotfiles synced!"
@echo
@$(MAKE) sync-emacs
@echo "Emacs settings synced!"
@echo "Emacs settings synced!"
@echo
@ -214,20 +214,20 @@ else
ifeq ($(ARCH), 1)
@$(MAKE) sync-arch
@echo "Arch synced!"
@echo "Arch synced!"
@echo
# Specific to WSL
else ifeq ($(WSL), 1)
@$(MAKE) sync-wsl
@echo "WSL synced!"
@echo "WSL synced!"
@echo
# Windows
@$(MAKE) sync-windows
@echo "Windows synced!"
@echo "Windows synced!"
@echo
endif