1
1
mirror of https://github.com/primer/css.git synced 2024-12-18 03:31:43 +03:00
css/script/build-docs

9 lines
151 B
Plaintext
Raw Normal View History

2018-12-01 03:29:31 +03:00
#!/bin/sh
2018-12-04 00:56:10 +03:00
set -e
2018-12-01 03:29:31 +03:00
if [ -z "$NOW_TOKEN" ]; then
echo "NOW_TOKEN is not set; skipping docs deployment"
else
2018-12-04 00:56:10 +03:00
cd docs
2018-12-01 03:29:31 +03:00
now --token=$NOW_TOKEN
fi