Skip to content

Instantly share code, notes, and snippets.

@jasonsanjose
Last active February 16, 2017 08:11
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save jasonsanjose/5514813 to your computer and use it in GitHub Desktop.
Save jasonsanjose/5514813 to your computer and use it in GitHub Desktop.
brackets-shell linux debian/ubuntu setup

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.github.com/jasonsanjose/5514813/raw/6215f3b73ff41f51e20bc94a9faa3e453402ce06/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
sudo apt-get install --assume-yes git libnss3-1d libnspr4-0d gyp gtk+-2.0
# install node and grunt
sudo apt-get install --assume-yes curl
curl -sL https://deb.nodesource.com/setup | sudo bash -
sudo apt-get install --assume-yes nodejs
sudo 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)
sudo npm install
popd
echo "brackets-shell compiled successfully to ./out/Release/Brackets"
@arraez
Copy link

arraez commented Sep 14, 2013

IMHO, for Fedora (f19 tested, ok).

https://gist.github.com/arraez/6490067

@brbsix
Copy link

brbsix commented Dec 11, 2015

I just tested this in 15.04 and 12.04 and noticed that the script is missing unzip from the dev dependencies.

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