Sha256: 4440fefbd8e8cbcb344f03d533fec3479363ad202160d1fcd0714a47004056d8

Contents?: true

Size: 400 Bytes

Versions: 9

Compression:

Stored size: 400 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}"

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

echo "success"

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
jgd-1.6.5 test.sh
jgd-1.6.4 test.sh
jgd-1.6.3 test.sh
jgd-1.6.2 test.sh
jgd-1.6.1 test.sh
jgd-1.6 test.sh
jgd-1.5.3 test.sh
jgd-1.5.2 test.sh
jgd-1.5.1 test.sh