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
I was trying to set the output of the bee version to a variable , when I noticed I don't get anything on the stdout . I've solved the issue by redirecting the stderr to the stdout, but I don't think it is the intentional behaviour of the command.
Steps to reproduce
BEE_VERSION=$(bee version)# Empty stringecho$BEE_VERSION
BEE_VERSION=$(bee version 2>&1)# Actual Bee versionecho$BEE_VERSION
Expected behavior
I can get back the result on the stdout
The text was updated successfully, but these errors were encountered:
Summary
I was trying to set the output of the
bee version
to a variable , when I noticed I don't get anything on thestdout
.I've solved the issue by redirecting the
stderr
to thestdout
, but I don't think it is the intentional behaviour of the command.Steps to reproduce
Expected behavior
I can get back the result on the
stdout
The text was updated successfully, but these errors were encountered: