-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a custom build script that includes pigments and minimap
- Loading branch information
Showing
2 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/bin/sh | ||
|
||
echo "Downloading node v0.10.22..." | ||
curl -s -O http://nodejs.org/dist/v0.10.22/node-v0.10.22-darwin-x64.tar.gz | ||
tar -zxf node-v0.10.22-darwin-x64.tar.gz | ||
export PATH=$PATH:$PWD/node-v0.10.22-darwin-x64/bin | ||
|
||
echo "Downloading latest Atom release..." | ||
curl -s -L "https://atom.io/download/mac" \ | ||
-H 'Accept: application/octet-stream' \ | ||
-o atom.zip | ||
|
||
mkdir atom | ||
unzip -q atom.zip -d atom | ||
|
||
echo "Downloading latest Minimap release..." | ||
atom/Atom.app/Contents/Resources/app/apm/node_modules/.bin/apm install minimap | ||
|
||
echo "Downloading latest Pigments release..." | ||
atom/Atom.app/Contents/Resources/app/apm/node_modules/.bin/apm install pigments | ||
|
||
echo "Downloading package dependencies..." | ||
atom/Atom.app/Contents/Resources/app/apm/node_modules/.bin/apm install | ||
|
||
echo "Running specs..." | ||
ATOM_PATH=./atom atom/Atom.app/Contents/Resources/app/apm/node_modules/.bin/apm test --path atom/Atom.app/Contents/Resources/app/atom.sh | ||
|
||
exit |