Skip to content
This repository was archived by the owner on Feb 21, 2023. It is now read-only.

Commit

Permalink
Merge pull request #32 from dbarbuzzi/hotfix/embdded-id-validation
Browse files Browse the repository at this point in the history
Hotfix: Improve logic for validating Client ID env var
  • Loading branch information
dbarbuzzi authored Oct 3, 2020
2 parents 4b91d98 + e800a68 commit 991e85a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clientid_check.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
if [ ${#TVD_CLIENT_ID} -ne 30 ]
if [ ${#TVD_CLIENT_ID} -lt 30 ]
then
exit 1
fi

0 comments on commit 991e85a

Please sign in to comment.