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
For cross compiling, it would be helpful to be able to run ./setup --build as a non-root user.
./setup --build
Right now, there is this code:
# Make sure only root can run our script if [ "$(id -u)" != "0" ]; then echo "This script must be run as root" >&2 exit 1 fi
that ensures that the aws-kinesis-agent install/uninstall are not performed by a non-root user. However, it really doesn't apply to the --build option
--build
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For cross compiling, it would be helpful to be able to run
./setup --build
as a non-root user.Right now, there is this code:
that ensures that the aws-kinesis-agent install/uninstall are not performed by a non-root user. However, it really doesn't apply to the
--build
optionThe text was updated successfully, but these errors were encountered: