Skip to content

Instantly share code, notes, and snippets.

@adam-singer
Created January 30, 2012 05:33
Show Gist options
  • Save adam-singer/1702746 to your computer and use it in GitHub Desktop.
Save adam-singer/1702746 to your computer and use it in GitHub Desktop.
Get latest bundle of Dart with Dartium for MacOSX
rm -rf dart snapshots &&
mkdir snapshots &&
cd snapshots &&
wget http://gsdview.appspot.com/dart-editor-archive-continuous/latest/dart-editor-macosx.cocoa.x86_64.zip
cd ../ &&
tar -zxvf snapshots/dart-editor-macosx.cocoa.x86_64.zip &&
cd dart &&
echo "./DartEditor.app/Contents/MacOS/DartEditor" > runDartEditor.sh &&
chmod +x runDartEditor.sh &&
cd dart-sdk &&
echo "Completed"
@adam-singer
Copy link
Author

Place this script into a new directory and run. This script was built for macosx, minor adjustments could be made for Linux.
Inside of the directory you created, cd dart && ./runDartEditor.sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment