Is it normal and expected that my local openssl command will be a wrapper around an embedded version within terraspace? I haven’t touched terraspace in a few months now and ran into problems with openssl after migrating my files to a new laptop and trying to troubleshoot –
Here’s what I see –
✗ which openssl
/usr/local/bin/openssl
✗ cat `which openssl`
#!/bin/bash
unset GEM_HOME
unset GEM_PATH
export PATH=/opt/terraspace/embedded/bin:$PATH
exec /opt/terraspace/embedded/bin/openssl "$@"
Is this normal and expected?
thanks.