Skip to content

Commit e570745

Browse files
committed
Refs #20734: fixes after rebase
Signed-off-by: JLBuenoLopez-eProsima <joseluisbueno@eprosima.com>
1 parent 4882db8 commit e570745

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

utils/scripts/update_generated_code_from_idl.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ ret_value=0
2020

2121
cd ./fastdds_python/test/types
2222
echo -e "Processing ${yellow}test_complete.idl test_modules.idl${textreset}"
23-
echo "Running: fastddsgen -cdr both -replace -python test_complete.idl test_modules.idl"
24-
fastddsgen -cdr both -replace -python test_complete.idl test_modules.idl
23+
echo "Running: fastddsgen -replace -python test_complete.idl test_modules.idl"
24+
fastddsgen -replace -python test_complete.idl test_modules.idl
2525
if [[ $? != 0 ]]; then
2626
ret_value=-1
2727
fi
@@ -31,8 +31,8 @@ if [[ $ret_value != -1 ]]; then
3131
cd "./fastdds_python_examples/HelloWorldExample"
3232

3333
echo -e "Processing ${yellow}HelloWorld.idl${textreset}"
34-
echo "Running: fastddsgen -cdr both -replace -python HelloWorld.idl"
35-
fastddsgen -cdr both -replace -python HelloWorld.idl
34+
echo "Running: fastddsgen -replace -python HelloWorld.idl"
35+
fastddsgen -replace -python HelloWorld.idl
3636
fi
3737

3838
if [[ $? != 0 ]]; then

0 commit comments

Comments
 (0)