From 0cced419a612d54698d7a63c59bbf5f8ffcffda1 Mon Sep 17 00:00:00 2001 From: omicron Date: Sun, 24 Aug 2025 11:52:18 +0200 Subject: [PATCH] Make devloop do an initial install on first run --- devloop | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/devloop b/devloop index e60727c..d4e7bb0 100755 --- a/devloop +++ b/devloop @@ -11,6 +11,10 @@ if [[ ! -d "${WOW_ADDON_DIR}" ]]; then exit 1 fi +# Initial build / install +make -s build +rsync -q -a ./build/OmicronFrames "${WOW_ADDON_DIR}/" --delete + # Every time the source or texture directory tree is changed, wait 1 second and # build the addon, then install it to the directory passed on the command line while true; do