Fix cp -r usage to be portable.
cp -r foo/ bar/ in linux will create a bar/foo directoy. In the objectivec generate descritpor case, well known types will be created in objectivec/google/google/protobuf/.. if the command is run under linux. Adding the trailing period fixes the behavior inconsistency.
This commit is contained in:
parent
b53417c735
commit
cf7e99db96
1 changed files with 1 additions and 1 deletions
|
@ -73,4 +73,4 @@ fi
|
|||
|
||||
# Copy them over.
|
||||
echo "Copying over updated WellKnownType sources."
|
||||
cp -r "${TMP_DIR}/google/" "${ProtoRootDir}/objectivec/google/"
|
||||
cp -r "${TMP_DIR}/google/." "${ProtoRootDir}/objectivec/google/"
|
||||
|
|
Loading…
Add table
Reference in a new issue