We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Any one got it working on a mac machine?
I had an error on CONFIG_SETUP_UUID=$(<"/proc/sys/kernel/random/uuid")
CONFIG_SETUP_UUID=$(<"/proc/sys/kernel/random/uuid")
at https://github.com/aws/aws-nitro-enclaves-with-k8s/blob/main/enclavectl#L144C1-L144C57 which i fixed by replacing with the following:
CONFIG_SETUP_UUID=$(uuidgen)
However, I got another error
./enclavectl: line 128: CONFIG_${item^^}="$value": bad substitution
Subsequent run got me ./enclavectl: line 167: CONFIG_${item^^}: bad substitution
./enclavectl: line 167: CONFIG_${item^^}: bad substitution
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Any one got it working on a mac machine?
I had an error on
CONFIG_SETUP_UUID=$(<"/proc/sys/kernel/random/uuid")
at https://github.com/aws/aws-nitro-enclaves-with-k8s/blob/main/enclavectl#L144C1-L144C57 which i fixed by replacing with the following:
CONFIG_SETUP_UUID=$(uuidgen)
However, I got another error
./enclavectl: line 128: CONFIG_${item^^}="$value": bad substitution
Subsequent run got me
./enclavectl: line 167: CONFIG_${item^^}: bad substitution
The text was updated successfully, but these errors were encountered: