From 834bd155a675ac8bf12fee976cc155cecf3e1a42 Mon Sep 17 00:00:00 2001 From: "Justin (shocknet)" Date: Sun, 30 Jun 2024 22:00:45 -0400 Subject: [PATCH] deploy --- deploy.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deploy.sh b/deploy.sh index ccff2375..ea2b83d6 100755 --- a/deploy.sh +++ b/deploy.sh @@ -69,16 +69,16 @@ EOF fi } - create_plist "~/Library/LaunchAgents/com.lnd.plist" "com.lnd" "${HOME}/lnd/lnd" "" - create_plist "~/Library/LaunchAgents/com.lightning_pub.plist" "com.lightning_pub" "/bin/bash-csource ${HOME}/.nvm/nvm.sh && npm start" "${HOME}/lightning_pub" + create_plist "~/Library/LaunchAgents/local.lnd.plist" "local.lnd" "${HOME}/lnd/lnd" "" + create_plist "~/Library/LaunchAgents/local.lightning_pub.plist" "local.lightning_pub" "/bin/bash-csource ${HOME}/.nvm/nvm.sh && npm start" "${HOME}/lightning_pub" log "${PRIMARY_COLOR}Created launchd plists. Please load them using launchctl.${RESET_COLOR}" } start_services_mac() { create_launchd_plist - launchctl load ~/Library/LaunchAgents/com.lnd.plist - launchctl load ~/Library/LaunchAgents/com.lightning_pub.plist + launchctl load ~/Library/LaunchAgents/local.lnd.plist + launchctl load ~/Library/LaunchAgents/local.lightning_pub.plist log "${SECONDARY_COLOR}LND${RESET_COLOR} and ${SECONDARY_COLOR}Lightning.Pub${RESET_COLOR} services started using launchd." }