diff options
-rw-r--r-- | .travis.yml | 2 | ||||
-rwxr-xr-x | scripts/launch-website.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index c43c63a..f6ca131 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -29,7 +29,7 @@ deploy: | |||
29 | keep_history: true | 29 | keep_history: true |
30 | local_dir: terraform-provider-website | 30 | local_dir: terraform-provider-website |
31 | on: | 31 | on: |
32 | all_branches: true | 32 | branch: master |
33 | 33 | ||
34 | matrix: | 34 | matrix: |
35 | fast_finish: true | 35 | fast_finish: true |
diff --git a/scripts/launch-website.sh b/scripts/launch-website.sh index ec9e92c..dda894d 100755 --- a/scripts/launch-website.sh +++ b/scripts/launch-website.sh | |||
@@ -1,6 +1,6 @@ | |||
1 | #!/usr/bin/env bash | 1 | #!/usr/bin/env bash |
2 | 2 | ||
3 | #the sleep and the subquery & are here to ensure that wget is called after make website have done its work so that the website is gotten correctly | 3 | # sleep and the sub-command are there to make sure wget is called *after* `make website` has started. This ensures the website to be fetched correctly. |
4 | (sleep 10; | 4 | (sleep 10; |
5 | wget --recursive --no-parent --domains localhost --page-requisites --html-extension --convert-links --no-clobber http://localhost:4567/docs/providers/mailgun/; | 5 | wget --recursive --no-parent --domains localhost --page-requisites --html-extension --convert-links --no-clobber http://localhost:4567/docs/providers/mailgun/; |
6 | 6 | ||