Files
tinymce-docs-4x/_scripts/get-baseurl.sh
T
2015-12-01 11:14:23 -08:00

10 lines
129 B
Bash
Executable File

#!/bin/bash
set -e
if [[ "master" == $WERCKER_GIT_BRANCH ]]; then
echo "/docs"
else
echo "/docs/pr/$WERCKER_GIT_BRANCH"
fi