Skip to content

Commit 39979ed

Browse files
committed
Fixed the app testing scripts execution under OSX.
1 parent 6677448 commit 39979ed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

exonum-java-binding/core/rust/exonum-java/start_cryptocurrency_node.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ rm -rf testnet
5252
mkdir testnet
5353

5454
# Delete the java_bindings library from the target/debug if any to prevent ambiguity in dynamic linking (ECR-3468)
55-
rm -f "${EJB_ROOT}/core/rust/target/debug/libjava_bindings.*"
55+
rm -f ${EJB_ROOT}/core/rust/target/debug/libjava_bindings.*
5656

5757
# Enable predefined native logging configuration,
5858
# unless it is already set to any value (incl. null)

exonum-java-binding/core/rust/exonum-java/start_qa_node.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ mkdir testnet
5454
trap "killall exonum-java" SIGINT SIGTERM EXIT
5555

5656
# Delete the java_bindings library from the target/debug if any to prevent ambiguity in dynamic linking (ECR-3468)
57-
rm -f "${EJB_ROOT}/core/rust/target/debug/libjava_bindings.*"
57+
rm -f ${EJB_ROOT}/core/rust/target/debug/libjava_bindings.*
5858

5959
# Configure and run nodes
6060
node_count=$1

0 commit comments

Comments
 (0)