abort doc scripts on error
This commit is contained in:
parent
dc3c400b6b
commit
7c66c4eb16
|
@ -1,3 +1,4 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
cd src; hugo
|
||||
cd src; hugo
|
||||
|
|
1
docs/ci
1
docs/ci
|
@ -1,4 +1,5 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
# This script gets run from CI to render and upload docs
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
aws configure set preview.cloudfront true
|
||||
aws --profile mitmproxy \
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
if [[ $# -eq 0 ]] ; then
|
||||
echo "Please supply a version, e.g. 'v3'"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
aws configure set preview.cloudfront true
|
||||
aws --profile mitmproxy \
|
||||
|
|
Loading…
Reference in New Issue