mirror of https://github.com/sbt/sbt.git
8 lines
228 B
Bash
8 lines
228 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
if [ "$1" = "clone" ]; then
|
||
|
|
git clone "https://alexarchambault:${GH_TOKEN}@github.com/alexarchambault/coursier.git" -b gh-pages coursier-gh-pages >/dev/null 2>&1
|
||
|
|
else
|
||
|
|
git push origin gh-pages >/dev/null 2>&1
|
||
|
|
fi
|