add emojis
This commit is contained in:
parent
67c42c895f
commit
10825de7ea
1 changed files with 7 additions and 7 deletions
14
Makefile
14
Makefile
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue