You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apologies, realised you have fixed this, but unless people require envied: ^0.5.4+1 specifically it does not pull the update. may wish to do a minor version increment to ensure this is fixed?
Apologies, realised you have fixed this, but unless people require envied: ^0.5.4+1 specifically it does not pull the update. may wish to do a minor version increment to ensure this is fixed?
@techouse my bad, for whatever reason the project didn't grab it when I ran it, but I tried cleaning and redownloading with ^0.5.4 and it did grab it that time. Mea Culpa.
Example:
DBSOCKET = "mysql+pymysql://{user}@LOCALHOST/myapp?unix_socket=/run/mysqld/mysqld.sock"
Expected behaviour: Successful generation of env.g.dart
Actual Output:
Reason for failure:
String is split on all occurances of '=' and assumes the value will never have one.
parser.dart:
Suggested fix:
since the .env spec does not require any spaces around =, the only way to identify the separator is to only split on the first occurrence of the =.
Therefore, replace the use of the inbuilt
string.split('=')
with one that only splits on the first occurrence.The text was updated successfully, but these errors were encountered: