-
Notifications
You must be signed in to change notification settings - Fork 0
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
Update dependency: deps/k_release #534
Changes from all commits
2f94fd2
df705ce
642982f
fd993f2
ad682e3
a339f23
65c0830
73db86b
ae5a1bb
325798e
03ee464
d9331d2
975393b
40f93d5
32c540d
023fe03
2b902e9
34d9914
d872cf5
4f562fb
f124445
03f57ea
38c6c5e
279e6a9
f68f6df
f987562
889f1b3
b45b942
49739f9
2ce8060
5bf5c25
1622515
2aa77ff
699cb55
873c7fb
8f369e9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
f27c5ec4861272c1ad4496bc6aab9f47dd6d473a | ||
5aa6993fab90675d971b8b98b3430d11f1ec2a2b |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6.3.23 | ||
6.3.58 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,7 +85,13 @@ done | |
|
||
# find server port via lsof | ||
server_port=$(lsof -a -p${server_pid} -sTCP:LISTEN -iTCP | grep ${server_pid} | sed -e 's/.* TCP \*:\([0-9]*\).*$/\1/') | ||
echo "Server listening on port ${server_port}" | ||
|
||
if [ -z "${server_port}" ]; then | ||
echo "Unable to identify the server, aborting" | ||
exit 4 | ||
else | ||
echo "Server listening on port ${server_port}" | ||
fi | ||
Comment on lines
+88
to
+94
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Previously we would happily continue with an empty |
||
|
||
client="$client -p ${server_port}" | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ | |
"args": [ | ||
{ | ||
"tag": "App", | ||
"name": "Lbl'Hash'if'UndsHash'then'UndsHash'else'UndsHash'fi'Unds'K-EQUAL-SYNTAX'Unds'Sort'Unds'Bool'Unds'Sort'Unds'Sort", | ||
"name": "Lblite", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This, of course, is a very important name change... |
||
"sorts": [ | ||
{ | ||
"tag": "SortApp", | ||
|
@@ -62,7 +62,7 @@ | |
"context": [ | ||
{ | ||
"tag": "App", | ||
"name": "Lbl'Hash'if'UndsHash'then'UndsHash'else'UndsHash'fi'Unds'K-EQUAL-SYNTAX'Unds'Sort'Unds'Bool'Unds'Sort'Unds'Sort", | ||
"name": "Lblite", | ||
"sorts": [ | ||
{ | ||
"tag": "SortApp", | ||
|
@@ -92,7 +92,7 @@ | |
] | ||
} | ||
], | ||
"error": "Inconsistent pattern. Symbol 'Lbl'Hash'if'UndsHash'then'UndsHash'else'UndsHash'fi'Unds'K-EQUAL-SYNTAX'Unds'Sort'Unds'Bool'Unds'Sort'Unds'Sort' expected 3 arguments but got 2" | ||
"error": "Inconsistent pattern. Symbol 'Lblite' expected 3 arguments but got 2" | ||
} | ||
], | ||
"message": "Could not verify pattern" | ||
|
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.
This seems to be necessary now... root cause is that we don't actually get a linkable plugin library from including the
blockchain-k-plugin
, we rather get the sources and have to build things ourselves.Also see the change to the plugin build and derivation for context.