We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2a647c3 + 8ea7cf6 commit 664c091Copy full SHA for 664c091
func/main.sh
@@ -467,12 +467,12 @@ sync_cron_jobs() {
467
is_user_format_valid() {
468
if [ ${#1} -eq 1 ]; then
469
if ! [[ "$1" =~ ^^[[:alnum:]]$ ]]; then
470
- echo "invalid $2 format :: $1"
+ check_result $E_INVALID "invalid $2 format :: $1"
471
fi
472
else
473
if ! [[ "$1" =~ ^[[:alnum:]][-|\.|_[:alnum:]]{0,28}[[:alnum:]]$ ]]
474
then
475
476
477
478
}
0 commit comments