Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion setup_payram.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2122,6 +2122,7 @@ update_payram_container() {
log "INFO" "Same version selected — restarting container without re-pulling..."
docker restart payram
log "SUCCESS" "PayRam restarted on $IMAGE_TAG"
install_payram_updater
return 0
fi

Expand Down Expand Up @@ -3295,7 +3296,9 @@ install_payram_updater() {
fi

print_color "gray" " Installing..."
if FORCE_REINSTALL=false QUIET=true ENABLE_SERVICE=true INIT_FLAGS="--no-autoupdate" \
local enable_svc="true"
[[ "$OS_FAMILY" == "macos" ]] && enable_svc="false"
if FORCE_REINSTALL=false QUIET=true ENABLE_SERVICE="$enable_svc" INIT_FLAGS="--no-autoupdate" \
bash "$updater_tmp" >/dev/null 2>&1; then
rm -f "$updater_tmp"
print_color "green" " ✅ PayRam Updater installed"
Expand Down