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
$ aws sts get-caller-identityUnable to redirect output to pager. Received the following error when opening pager:[Errno 2] No such file or directory: 'less'Learn more about configuring the output pager by running "aws help config-vars".
Setting the envvar overrides the default, allowing the commands to work.
So in my mind, either the less dependency should be installed by the feature, or the envvar should be set to allow operation.
Yes, I realize this can be accomplished by adding less to a Dockerfile, but that is not the solution one should have to arrive to after the feature fails to work.
The "correct" one ought to be to install less instead of mucking with the user's env.
The text was updated successfully, but these errors were encountered:
miketheman
added a commit
to miketheman/features
that referenced
this issue
Dec 18, 2024
The https://ghcr.io/devcontainers/features/aws-cli does not install
less
which is a requirement foraws-cli
.Setting the envvar overrides the default, allowing the commands to work.
So in my mind, either the
less
dependency should be installed by the feature, or the envvar should be set to allow operation.Yes, I realize this can be accomplished by adding
less
to a Dockerfile, but that is not the solution one should have to arrive to after the feature fails to work.The "correct" one ought to be to install
less
instead of mucking with the user's env.The text was updated successfully, but these errors were encountered: