Skip to content

Instantly share code, notes, and snippets.

@jbest84
Created December 1, 2015 21:43
Show Gist options
  • Save jbest84/bca0d8f59439c8204faa to your computer and use it in GitHub Desktop.
Save jbest84/bca0d8f59439c8204faa to your computer and use it in GitHub Desktop.
cd argos-sdk
call atom .
start grunt watch
cd ..
cd products
cd argos-saleslogix
call atom .
start grunt watch
start npm start
start /D "C:\Program Files (x86)\Atlassian\SourceTree\" SourceTree.exe
@jbest84
Copy link
Author

jbest84 commented Sep 1, 2016

bash version:

#!/usr/bin/env bash

set -e
set -x

pushd argos-sdk
atom . &
grunt watch &
popd

cd products/argos-saleslogix
atom . &
grunt watch &
npm start &
popd

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