diff --git a/src/bin_client/octez-init-sandboxed-client.sh b/src/bin_client/octez-init-sandboxed-client.sh index ce72aee260dc0980ecea8a7665e3b19558fb41b7..c6347a35b16e7eb471fdeed4dfc0443c739a2a53 100755 --- a/src/bin_client/octez-init-sandboxed-client.sh +++ b/src/bin_client/octez-init-sandboxed-client.sh @@ -131,6 +131,7 @@ main() { protocol_underscore=$(echo "$protocol" | tr -- - _) protocol_without_number=$(echo "$protocol" | tr -d "\-[0-9]") local_baker="$bin_dir/../../_build/default/src/proto_$protocol_underscore/bin_baker/main_baker_$protocol_underscore.exe" + local_agnostic_baker="$bin_dir/../../_build/default/src/bin_agnostic_baker/main_agnostic_baker.exe" local_accuser="$bin_dir/../../_build/default/src/proto_$protocol_underscore/bin_accuser/main_accuser_$protocol_underscore.exe" local_sc_rollup_node="$bin_dir/../../_build/default/src/proto_$protocol_underscore/bin_sc_rollup_node/main_sc_rollup_node_$protocol_underscore.exe" parameters_file="$bin_dir/../../_build/default/src/proto_$protocol_underscore/lib_parameters/sandbox-parameters.json" @@ -143,12 +144,18 @@ main() { fi baker="$local_baker --base-dir $client_dir --endpoint $endpoint" + agnostic_baker="$local_agnostic_baker --base-dir $client_dir --endpoint $endpoint" accuser="$local_accuser --base-dir $client_dir --endpoint $endpoint" sc_rollup_node="$local_sc_rollup_node --base-dir $client_dir --endpoint $endpoint" + echo '#!/bin/sh' > "$client_dir"/bin/octez-baker-"$protocol_without_number" echo "exec $baker \"\$@\"" >> "$client_dir"/bin/octez-baker-"$protocol_without_number" chmod +x "$client_dir"/bin/octez-baker-"$protocol_without_number" + echo '#!/bin/sh' > "$client_dir"/bin/octez-agnostic-baker + echo "exec $agnostic_baker \"\$@\"" >> "$client_dir"/bin/octez-agnostic-baker + chmod +x "$client_dir"/bin/octez-agnostic-baker + echo '#!/bin/sh' > "$client_dir"/bin/octez-smart-rollup-node-"$protocol_without_number" echo "exec $sc_rollup_node \"\$@\" --data-dir $rollup_node_dir" >> "$client_dir"/bin/octez-smart-rollup-node-"$protocol_without_number" chmod +x "$client_dir"/bin/octez-smart-rollup-node-"$protocol_without_number"