check_pve_version() {
...
if (( $(echo "$current_version < $min_version" | bc -l) )); then
Bug: Uses bc command which isn't in the check_requirements() list. Will fail if bc is not installed.
curl -s http://10.10.10.63:3000/LotusGuild/freshStartScript/raw/branch/main/freshStart.sh | bash
check_pve_version() {
...
if (( $(echo "$current_version < $min_version" | bc -l) )); then
Bug: Uses bc command which isn't in the check_requirements() list. Will fail if bc is not installed.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
curl -s http://10.10.10.63:3000/LotusGuild/freshStartScript/raw/branch/main/freshStart.sh | bash
check_pve_version() {
...
if (( $(echo "$current_version < $min_version" | bc -l) )); then
Bug: Uses bc command which isn't in the check_requirements() list. Will fail if bc is not installed.