From 133ee7dcb519dcd140e3f7ca4e8d9c5bba1feecc Mon Sep 17 00:00:00 2001 From: mnguyen Date: Fri, 2 Sep 2022 12:30:51 -0700 Subject: [PATCH 1/2] updated README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b10af643..f242170e 100644 --- a/README.md +++ b/README.md @@ -141,8 +141,8 @@ Suppose you wanted to build and run the 64-bit `PHP8` wrappers on `Linux`. You cd wrappers_build # Move to that directory. git clone https://github.com/PDFTron/PDFNetWrappers -b next_release --single-branch # Git the code. cd PDFNetWrappers/PDFNetC # Move to where we download PDFNet. - wget https://www.pdftron.com/downloads/PDFNetC64_PHP8.tar.gz # Download PDFNet. - tar xzvf PDFNetC64_PHP8.tar.gz # Unpack PDFNet. + wget https://www.pdftron.com/downloads/PDFNetC64.tar.gz # Download PDFNet. + tar xzvf PDFNetC64.tar.gz # Unpack PDFNet. mv PDFNetC64/Headers/ . # Move PDFNet Headers/ into place. mv PDFNetC64/Lib/ . # Move PDFNet Lib/ into place. cd .. # Go back up. From 2c9d6af72e55b9c30bc126b89ee97f0b87bf10f8 Mon Sep 17 00:00:00 2001 From: mnguyen Date: Fri, 2 Sep 2022 13:07:19 -0700 Subject: [PATCH 2/2] Updated README.md [2] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f242170e..1552c6ec 100644 --- a/README.md +++ b/README.md @@ -139,7 +139,7 @@ Suppose you wanted to build and run the 64-bit `PHP8` wrappers on `Linux`. You # Now, build PHP wrapper. Navigate to the location where you want to build the wrapper mkdir wrappers_build # Make a directory to build the wrappers in. cd wrappers_build # Move to that directory. - git clone https://github.com/PDFTron/PDFNetWrappers -b next_release --single-branch # Git the code. + git clone https://github.com/PDFTron/PDFNetWrappers # Git the code. cd PDFNetWrappers/PDFNetC # Move to where we download PDFNet. wget https://www.pdftron.com/downloads/PDFNetC64.tar.gz # Download PDFNet. tar xzvf PDFNetC64.tar.gz # Unpack PDFNet.