Skip to content

Commit

Permalink
fix naming issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Cifko committed Sep 28, 2023
1 parent a3b8b5f commit c0fdc6d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,9 +283,9 @@ def check_executable(bins_folder: str, file_name: str):
print_step("!!! YOU ARE USING EXECUTABLE BINARIES AND NOT COMPILING THE CODE !!!")
print_step(f"Tari folder {TARI_BINS_FOLDER}")
print_step(f"Tari dan folder {TARI_DAN_BINS_FOLDER}")
check_executable(TARI_BINS_FOLDER, "tari_base_node")
check_executable(TARI_BINS_FOLDER, "tari_console_wallet")
check_executable(TARI_BINS_FOLDER, "tari_miner")
check_executable(TARI_BINS_FOLDER, "minotari_node")
check_executable(TARI_BINS_FOLDER, "minotari_console_wallet")
check_executable(TARI_BINS_FOLDER, "minotari_miner")
check_executable(TARI_DAN_BINS_FOLDER, "tari_indexer")
check_executable(TARI_DAN_BINS_FOLDER, "tari_dan_wallet_daemon")
check_executable(TARI_DAN_BINS_FOLDER, "tari_dan_wallet_cli")
Expand Down
2 changes: 1 addition & 1 deletion protos.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pip install grpcio-tools
mkdir protos
python -m grpc_tools.protoc --proto_path ../tari/applications/tari_app_grpc/proto/ --python_out=./protos --grpc_python_out=./protos ../tari/applications/tari_app_grpc/proto/*.proto
python -m grpc_tools.protoc --proto_path ../tari/applications/minotari_app_grpc/proto/ --python_out=./protos --grpc_python_out=./protos ../tari/applications/minotari_app_grpc/proto/*.proto
2 changes: 1 addition & 1 deletion protos.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#! /bin/bash
pip3 install grpcio-tools
python3 -m grpc_tools.protoc --proto_path ../tari/applications/tari_app_grpc/proto/ --python_out=./protos --grpc_python_out=./protos ../tari/applications/tari_app_grpc/proto/*.proto
python3 -m grpc_tools.protoc --proto_path ../tari/applications/minotari_app_grpc/proto/ --python_out=./protos --grpc_python_out=./protos ../tari/applications/minotari_app_grpc/proto/*.proto

0 comments on commit c0fdc6d

Please sign in to comment.