This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem install shopify_theme | |
theme configure SHOPIFY_API_KEY SHOPIFY_API_PASSWORD SHOPIFY_STORE_URL SHOPIFY_THEME_ID | |
git diff-tree -r --no-commit-id --name-only --diff-filter=ACMRT $COMMIT_ID | xargs theme upload | |
git diff-tree -r --no-commit-id --name-only --diff-filter=D $COMMIT_ID | xargs theme remove |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
L="${HOME}/bin/flynn" && curl -sL -A "`uname -sp`" https://dl.flynn.io/cli | zcat >$L && chmod +x $L |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
VERSION="28.0" | |
rm -rf "${HOME}/firefox" | |
wget -O "${HOME}/firefox.tar.bz2" "https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${VERSION}/linux-x86_64/en-US/firefox-${VERSION}.tar.bz2" | |
tar -xaf "${HOME}/firefox.tar.bz2" --directory "${HOME}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
VERSION="2.0.0-rc11" | |
wget -O "${HOME}/bin/boot" "https://github.com/boot-clj/boot/releases/download/${VERSION}/boot.sh" | |
chmod u+x "${HOME}/bin/boot" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Add the following two items as environment variables to your project | |
# configuration on Codeship. | |
# SAUCE_USER="" | |
# SAUCE_API_KEY="" | |
set -e | |
SAUCE_VERSION="4.3.6" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
rvm get head | |
rvm use 2.2.0 --install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
VERSION="0.2.5" | |
mkdir ~/gemnasium | |
wget "https://github.com/gemnasium/toolbelt/releases/download/${VERSION}/gemnasium_${VERSION}_linux_amd64.tar.gz" -O ~/gemnasium.tar.gz | |
tar -xaf ~/gemnasium.tar.gz --strip-components=1 -C ~/gemnasium | |
rm -rf ~/gemnasium.tar.gz | |
# call the binary like |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e | |
NEW_GOROOT="${HOME}/go" | |
OSARCH="linux/amd64 windows/amd64" | |
mkdir -p "${NEW_GOROOT}" | |
cp -r "${GOROOT}" "${HOME}" | |
export GOROOT="${NEW_GOROOT}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
VERSION="1.4.1" | |
DIR=`pwd` | |
mkdir ~/jpegoptim | |
wget "https://github.com/tjko/jpegoptim/archive/RELEASE.${VERSION}.tar.gz" -O ~/jpegoptim.tar.gz | |
tar -xaf ~/jpegoptim.tar.gz --strip-components=1 -C ~/jpegoptim | |
cd ~/jpegoptim | |
./configure |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
curl https://www.parse.com/downloads/cloud_code/parse -o ${HOME}/bin/parse | |
chmod 755 ${HOME}/bin/parse |