commit b0941e10e853d1f37a7c4b175a64bb7bf02cdc12 parent bee87120c757c50c5e9b1918f9f79a11655225c9 Author: Brian C. Lane <bcl@ibrianlane.com> Date: Sat, 19 Jul 2014 17:51:47 -0700 Update install command for newer Rokus Before running make install setup the user and password: export ROKU_DEV_USER=rokudev export ROKU_DEV_PASSWORD=feefifofum Diffstat:
M | HMS/app.mk | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/HMS/app.mk b/HMS/app.mk @@ -63,7 +63,7 @@ $(APPNAME): install: $(APPNAME) @echo "Installing $(APPNAME) to host $(ROKU_DEV_TARGET)" - @curl -s -S -F "mysubmit=Install" -F "archive=@$(ZIPREL)/$(APPNAME).zip" -F "passwd=" http://$(ROKU_DEV_TARGET)/plugin_install | grep "<font color" | sed "s/<font color=\"red\">//" + @curl -s -S -F "mysubmit=Install" -F "archive=@$(ZIPREL)/$(APPNAME).zip" -F "password=" -u $(ROKU_DEV_USER):$(ROKU_DEV_PASSWORD) --anyauth http://$(ROKU_DEV_TARGET)/plugin_install | grep "<font color" | sed "s/<font color=\"red\">//" pkg: install @echo "*** Creating Package ***"