First introduced at Starmount Chili Cook-Off 2015. Won third place prize, defeating animal-based chili!
- 2015: 3rd place
- 2016: 9th place
- 30 fl. oz Organic Tomato Sauce
fastlane_version "1.57.0" | |
require 'fileutils' | |
default_platform :ios | |
platform :ios do | |
desc "Increment framework version" | |
private_lane :increment_framework_version do |lane| |
sudo sed -i .orig 's/\(<string>\/usr\/sbin\/mDNSResponder<\/string>\)/\1\ | |
<string>-AlwaysAppendSearchDomains<\/string>/ | |
' /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist | |
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist | |
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist |
if [[ -d /opt/build/resources/jdk ]]; then | |
servertype="build" | |
else | |
servertype="code" | |
fi | |
jdkpath=/opt/$servertype/resources/jdk/jdk | |
export PATH=$jdkpath/bin:$PATH | |
export JAVA_HOME=$jdkpath |
This tutorial guides you through creating your first Vagrant project.
We start with a generic Ubuntu VM, and use the Chef provisioning tool to:
Afterwards, we'll see how easy it is to package our newly provisioned VM
#!/bin/bash | |
GIT_DIR=$(git rev-parse --git-dir 2>/dev/null) | |
if [ -z "$GIT_DIR" ]; then | |
echo >&2 "fatal: hooks/functions: GIT_DIR not set" | |
exit 1 | |
fi | |
read oldrev newrev refname |