Skip to content

Instantly share code, notes, and snippets.

View pedrom34's full-sized avatar
๐Ÿ™ˆ

Pierre pedrom34

๐Ÿ™ˆ
View GitHub Profile
@igoptx
igoptx / upgrade-firefly.sh
Created July 19, 2025 11:10
bash script to update firefly instalation easly (Self Managed)
#!/bin/bash
# === Auto mode if --auto argument is passed ===
AUTO_MODE=false
if [[ "$1" == "--auto" ]]; then
AUTO_MODE=true
shift
fi
# === Start log ===