diff options
author | Nicolas Pena <npm@chromium.org> | 2018-05-30 21:14:10 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-30 21:14:10 +0000 |
commit | a3aec9a0ac2d818489344bcedbab8d1c8237b1a1 (patch) | |
tree | 6a9d9d21c9229ffe6fb2802a03b947d525c37413 | |
parent | aa31fd95a7ba0c8bdfdb3cfd37f44641ae8c8c2b (diff) | |
download | pdfium-a3aec9a0ac2d818489344bcedbab8d1c8237b1a1.tar.xz |
Fix roll-dep path in roll-freetype.sh
This CL removes the 'pdfium' part of the path, because it's not working
for me anymore with that.
Change-Id: I84008905e368a4bdccc5e53aff2b90f4ae1938d7
Reviewed-on: https://pdfium-review.googlesource.com/33311
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Nicolás Peña Moreno <npm@chromium.org>
-rwxr-xr-x | third_party/freetype/roll-freetype.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/freetype/roll-freetype.sh b/third_party/freetype/roll-freetype.sh index e51a6a9fe2..fd2c293c92 100755 --- a/third_party/freetype/roll-freetype.sh +++ b/third_party/freetype/roll-freetype.sh @@ -9,7 +9,7 @@ set -o pipefail set -u REVIEWERS=`paste -s -d, third_party/freetype/OWNERS` -roll-dep -r "${REVIEWERS}" "$@" pdfium/third_party/freetype/src/ +roll-dep -r "${REVIEWERS}" "$@" third_party/freetype/src/ FTVERSION=`git -C third_party/freetype/src/ describe --long` FTCOMMIT=`git -C third_party/freetype/src/ rev-parse HEAD` |