From 32739557674d9665a608b41a32419ffb6b744d55 Mon Sep 17 00:00:00 2001 From: Kazuhiro MUSASHI Date: Sat, 4 May 2019 18:59:22 +0800 Subject: [PATCH] Change the path-to-public-directory: ``` --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,5 +11,5 @@ jobs: command: HUGO_ENV=production hugo -v -s /root/project/ - run: name: "Test Website" - command: htmlproofer src/public --allow-hash-href --check-html --empty-alt-ignore --disable-external + command: htmlproofer /root/project/public --allow-hash-href --check-html --empty-alt-ignore --disable-external ``` --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f2608f9..ea607fe 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,5 +11,5 @@ jobs: command: HUGO_ENV=production hugo -v -s /root/project/ - run: name: "Test Website" - command: htmlproofer src/public --allow-hash-href --check-html --empty-alt-ignore --disable-external + command: htmlproofer /root/project/public --allow-hash-href --check-html --empty-alt-ignore --disable-external