Open Inveracity opened 5 months ago
Good catch, this was missed a long time ago. the current usage is definitely wrong as <()
returns a file descriptor and not what was expected. A simple PR should be good enough
however scope the variable:
rsa256_sign() {
PRIVATE_KEY_PATH=$1
openssl dgst -binary -sha256 -sign $PRIVATE_KEY_PATH
}
or
rsa256_sign() {
openssl dgst -binary -sha256 -sign $1
}
Heya, while attempting to register my runner with an app private key I ran into the following error message:
I found that I could work around it by making the following change in
app_token.sh
and then run it
If this is a reasonable change I'll submit a PR
Host info: