pothi.mikrotik-scripts/test-snippets/test-empty-env-var
2022-11-10 12:35:50 +05:30

7 lines
392 B
Text

:global adminEmail
:if ([:typeof $adminEmail] = "nothing" || $adminEmail = "") do={ :log error "Admin Email is not defined or nil."; :error "Admin Email is not defined or nil."; } else={ :put "We are good to proceed!" }
# :if ($adminEmail = "") do={ :log error "Admin Email is nil."; :error "Admin Email is nil."; }
:put "This should not be visible if admin email is not defined or nil!"