Skip to content

Instantly share code, notes, and snippets.

@jeffgca
Forked from anonymous/-
Last active December 31, 2015 19:38
Show Gist options
  • Save jeffgca/8034449 to your computer and use it in GitHub Desktop.
Save jeffgca/8034449 to your computer and use it in GitHub Desktop.
script to initialize a blank jetpack extension.
#!/bin/bash
_PWD=`pwd`
mkdir -p "$_PWD/$1" && cd "$_PWD/$1" && jetpack init
echo "" > lib/main.js && echo "" > doc/main.md && echo "" > test/test-main.js && echo "" > ./README.md
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment