10 lines
129 B
Bash
Executable File
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
|