Skip to content

Instantly share code, notes, and snippets.

@BoyCook
Created October 1, 2013 23:23
Show Gist options
  • Save BoyCook/6786772 to your computer and use it in GitHub Desktop.
Save BoyCook/6786772 to your computer and use it in GitHub Desktop.
Makefile task for tsapp push
ASSETS := $(wildcard assets/*)
BAG = '' # Set bag name here
push:
@for asset in $(ASSETS); do tsapp push_hard $(BAG) `echo $$asset | cut -d '/' -f 2` ; done
tsapp push_hard $(BAG) index.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment