Created
October 1, 2013 23:23
-
-
Save BoyCook/6786772 to your computer and use it in GitHub Desktop.
Makefile task for tsapp push
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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