Sha256: cf81308243a9b1039dccd20e237b0d8c5b72f2d82e40c79a109d573e91475828

Contents?: true

Size: 439 Bytes

Versions: 7

Compression:

Stored size: 439 Bytes

Contents

#!/bin/bash
set -e
set -x

TMP=$(mktemp -d -t jgd-XXXX)

CWD=$(pwd)
git init "${TMP}"
cd "${TMP}"
echo "hello" > "test.html"
git add "test.html"
git config user.email "test@example.com"
git config user.name "Test"
git commit -am 'initial commit'
cd "${CWD}"

./bash/deploy.sh "${TMP}" gh-pages master _some-other-config.yml

cd "${TMP}"
git checkout gh-pages
ls -al
cat test.html | grep "hello"
cd "${CWD}"
rm -rf "${TMP}"

echo "success"

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
jgd-1.14.0 test.sh
jgd-1.13.1 test.sh
jgd-1.13.0 test.sh
jgd-1.12 test.sh
jgd-1.11 test.sh
jgd-1.10 test.sh
jgd-1.9 test.sh