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
Seems that in Xcode BuildDotenvConfig.ruby is not correctly reading the contents of /tmp/envfile if available. I've traced the problem down to the line 13.
file = File.read("/tmp/envfile").strip
file contains the content of /tmp/envfile which the script then attempts to append to path and reading starting at line 26.
The problem can be solved by changing line 13 to simply be the path, which is then correctly read in and processed.
file = "/tmp/envfile"
The text was updated successfully, but these errors were encountered:
Seems that in Xcode
BuildDotenvConfig.ruby
is not correctly reading the contents of/tmp/envfile
if available. I've traced the problem down to the line 13.file
contains the content of/tmp/envfile
which the script then attempts to append topath
and reading starting at line 26.The problem can be solved by changing line 13 to simply be the path, which is then correctly read in and processed.
The text was updated successfully, but these errors were encountered: