Skip to content

Commit 2003ba7

Browse files
committed
Fix sed commands in sync_proto.sh
1 parent d49e886 commit 2003ba7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/tools/sync_proto.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ rm $CLIENT_DIR/qdrant_internal_service.proto
2727
rm $CLIENT_DIR/raft_service.proto
2828
rm $CLIENT_DIR/health_check.proto
2929
rm $CLIENT_DIR/shard_snapshots_service.proto
30-
sed -i '' '
30+
sed -i '
3131
/collections_internal_service.proto/d;
3232
/points_internal_service.proto/d;
3333
/qdrant_internal_service.proto/d;
@@ -37,6 +37,6 @@ sed -i '' '
3737
' $CLIENT_DIR/qdrant.proto
3838

3939
# Remove csharp option from proto files
40-
sed -i '' '/option csharp_namespace = .*/d' $CLIENT_DIR/*.proto
40+
sed -i '/option csharp_namespace = .*/d' $CLIENT_DIR/*.proto
4141

4242
./internal/tools/generate_proto_go.sh

0 commit comments

Comments
 (0)