Skip to content

Instantly share code, notes, and snippets.

View mattlangtree's full-sized avatar
💻

Matt Langtree mattlangtree

💻
View GitHub Profile
@mattlangtree
mattlangtree / build-latest-dux.sh
Last active December 10, 2015 22:08
Download the latest version of Dux and run it. Usage: curl https://gist.github.com/raw/4499717/build-latest-dux.sh | sh
#!/bin/bash
cd /tmp
rm -rf /tmp/Dux
git clone https://github.com/abhibeckert/Dux.git
cd Dux
xcodebuild -target Dux -configuration Release
rm -r /Applications/Dux.app
mv build/Release/Dux.app /Applications/Dux.app
open /Applications/Dux.app