From 195f965e240957c2c30e875722fabef351bd762b Mon Sep 17 00:00:00 2001 From: Kingkor Roy Tirtho Date: Fri, 18 Mar 2022 12:44:14 +0600 Subject: [PATCH] incompitable dummy fix --- bin/create-secrets.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/create-secrets.dart b/bin/create-secrets.dart index 0bc62893..a84bc12b 100644 --- a/bin/create-secrets.dart +++ b/bin/create-secrets.dart @@ -7,6 +7,7 @@ void main() async { final env = Platform.environment; final bool hasKey = env.containsKey("SECRET"); final val = hasKey ? jsonDecode(env["SECRET"]!) : null; + print("SECRET VALUE: ${env["SECRET"]}"); if (!hasKey || (hasKey && val is! List)) { throw Exception( "'SECRET' Environmental Variable isn't configured properly");