Sha256: 5d9336e68a469a23f091d641c7aefcd81513295f85c0869c7cb016a13870bef7
Contents?: true
Size: 409 Bytes
Versions: 2
Compression:
Stored size: 409 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 cd "${TMP}" git checkout gh-pages ls -al cat test.html | grep "hello" cd "${CWD}" rm -rf "${TMP}" echo "success"
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jgd-1.7.1 | test.sh |
jgd-1.7 | test.sh |