1
1
mirror of https://github.com/primer/css.git synced 2024-12-18 11:41:33 +03:00
css/script/build-docs
2018-12-17 15:26:09 -08:00

9 lines
151 B
Bash
Executable File

#!/bin/sh
set -e
if [ -z "$NOW_TOKEN" ]; then
echo "NOW_TOKEN is not set; skipping docs deployment"
else
cd docs
now --token=$NOW_TOKEN
fi