Skip to content

Instantly share code, notes, and snippets.

@jaeh
Forked from jasonsanjose/README.md
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaeh/9375153 to your computer and use it in GitHub Desktop.
Save jaeh/9375153 to your computer and use it in GitHub Desktop.

DOES NOT WORK (YET?)

Choose a directory to download both brackets-shell and brackets git respositories. The following script will setup the repositories and download required dependencies.

wget https://gist.githubusercontent.com/jaeh/9375153/raw/03d528075c9d975515cf0ade41b8b478151e5b0e/setup.sh; chmod +x setup.sh; bash setup.sh; rm setup.sh
#!/bin/bash
echo "Brackets Contributor Setup"
echo ""
echo "Contributors should fork the brackets and brackets-shell"
echo "repositories to their own GitHub account. Skip this step"
echo "to use the main repositories."
echo ""
# prompt for GitHub user name
echo -n "(Optional) Enter your GitHub user name and press [ENTER]: "
read username
brackets_shell_adobe_url="https://github.com/adobe/brackets-shell.git"
brackets_adobe_url="https://github.com/adobe/brackets.git"
# default to adobe repositories
if [ -z "$username" ]; then
brackets_shell_url="$brackets_shell_adobe_url"
brackets_url="$brackets_adobe_url"
else
brackets_shell_url="https://github.com/${username}/brackets-shell.git"
brackets_url="https://github.com/${username}/brackets.git"
fi
# test repository URLs
wget -q $brackets_shell_url
if [ $? -ne 0 ]; then
echo "brackets-shell repository not found:" $brackets_shell_url
echo "Fork the repository at https://github.com/adobe/brackets-shell/fork"
exit 1
fi
wget -q $brackets_url
if [ $? -ne 0 ]; then
echo "brackets repository not found:" $brackets_shell_url
echo "Fork the repository at https://github.com/adobe/brackets/fork"
exit 1
fi
# install git and dev dependencies
su -c "yum install -y git libnss3-1d libnspr4-0d gyp gtk+-2.0"
# install node and grunt
su -c "yum install -y python-software-properties python g++ make"
su -c "yum install -y nodejs"
su -c "npm install -g grunt-cli"
# clone brackets
git clone $brackets_url
pushd brackets
# add upstream
git remote add upstream $brackets_adobe_url
git fetch upstream
# update submodules
git checkout upstream/master
git submodule update --init --recursive
popd
# clone brackets-shell
git clone $brackets_shell_url
pushd brackets-shell
# add upstream
git remote add upstream $brackets_shell_adobe_url
git fetch upstream
git checkout upstream/master
# npm install for node dependencies
# postinstall grunt (setup and build)
su -c "npm install"
popd
echo "brackets-shell compiled successfully to ./out/Release/Brackets"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment