Created
January 30, 2012 05:33
-
-
Save adam-singer/1702746 to your computer and use it in GitHub Desktop.
Get latest bundle of Dart with Dartium for MacOSX
This file contains 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
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" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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