-
Notifications
You must be signed in to change notification settings - Fork 676
New issue
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
Prerequisites preparation fix for behind firewall. #20
Prerequisites preparation fix for behind firewall. #20
Conversation
added a pull request for #16 |
@@ -211,7 +211,7 @@ function setup_vera() { | |||
return 0 | |||
fi | |||
|
|||
wget -O "$TMP_DIR/$NAME.tar.gz" "$URL" || fail_msg "$FAIL_MSG. Cannot download '$URL' archive." | |||
wget --no-check-certificate -O "$TMP_DIR/$NAME.tar.gz" "$URL" || fail_msg "$FAIL_MSG. Cannot download '$URL' archive." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are two more wget
commands in the script.
Maybe, --no-check-certificate
is necessary for them too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
as with my current environment vera only rejects. it will be better to add all. I'll check.
JerryScript-DCO-1.0-Signed-off-by: SaeHie Park [email protected]
it's ok to add all three |
Remove serializer.
* replace concatenation with template strings * fix output constants to match JerryScript debugger * replace a needlessly named function with an arrow function JerryScript-DCO-1.0-Signed-off-by: Geoff Gustafson [email protected]
JerryScript-DCO-1.0-Signed-off-by: SaeHie Park [email protected]