From 1c232593d766c801bc7bd2fb754f54a150830061 Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Thu, 30 Jan 2025 19:39:59 -0500 Subject: [PATCH] Fix butler paths --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 7d22169..a668c14 100644 --- a/Makefile +++ b/Makefile @@ -8,8 +8,8 @@ WIN_CFLAGS=-Wall -lraylib -lm -lpthread GAME=fatal_text_adventure DATA_C=data/actions.c data/rooms.c data/room_ins.c data/words.c data/flags.c data/items.c -BUTLER=../butler/butler -ITCH_CHANNEL=01-text-adventure +BUTLER=./butler/butler +ITCH_CHANNEL=thrive ITCH_CHANNEL_LINUX=$(ITCH_CHANNEL)-linux-x64 ITCH_CHANNEL_WINDOWS=$(ITCH_CHANNEL)-windows-x64 @@ -51,5 +51,5 @@ $(GAME)_windows.zip: $(GAME)_windows.exe zip -r $(GAME)_windows.zip $(GAME)_windows.exe img/*.png butler_upload: $(GAME)_linux.zip $(GAME)_windows.zip - $(BUTLER) push ./$(GAME)_linux.zip bassguitarbill/fatal-distractions:$(ITCH_CHANNEL_LINUX) - $(BUTLER) push ./$(GAME)_windows.zip bassguitarbill/fatal-distractions:$(ITCH_CHANNEL_WINDOWS) + $(BUTLER) push ./$(GAME)_linux.zip bassguitarbill/$(ITCH_CHANNEL):$(ITCH_CHANNEL_LINUX) + $(BUTLER) push ./$(GAME)_windows.zip bassguitarbill/$(ITCH_CHANNEL):$(ITCH_CHANNEL_WINDOWS)