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:
Jisi Liu 2016-04-29 11:31:57 -07:00
parent b53417c735
commit cf7e99db96

View file

@ -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/"