"Technologx" wrote:sorry, i guess i should have asked: Windows or Mac?
TCL TV
"Technologx" wrote:that's a whole new subject.
I'm have errors with a couple of my XML files and I have no idea how to fix them.
#!/bin/bash
#ROKU_DEV_TARGET=192.168.1.25 # Roku 2XS
ROKU_DEV_TARGET=192.168.1.28 # put YOUR roku IP here
# wake up/interrupt Roku - workaround for fw5.4 deadly bug
curl -sS -d '' http://$ROKU_DEV_TARGET:8060/keypress/Home
curl -sS -d '' http://$ROKU_DEV_TARGET:8060/keypress/Home
# build. zip _must_ change for Roku to accept re-deploy (stupid Roku!)
cd -- "$(dirname "$0")"
touch timestamp
zip -FS -9 -r bundle * -x run.sh extras
# deploy
curl -f -sS --user rokudev:nuisance --anyauth -F "mysubmit=Install" -F "archive=@bundle.zip" -F "passwd=" http://$ROKU_DEV_TARGET/plugin_install \
| python -c 'import sys, re; print "\n".join(re.findall("<font color=\"red\">(.*?)</font>", sys.stdin.read(), re.DOTALL))'
"EnTerr" wrote:
This should do it - create "run.sh" file in the project top directory and use that. Season to taste:#!/bin/bash
ROKU_DEV_TARGET=192.168.1.28 # Roku 3
# wake up/interrupt Roku - workaround for fw5.4 deadly bug
curl -sS -d '' http://$ROKU_DEV_TARGET:8060/keypress/Home
curl -sS -d '' http://$ROKU_DEV_TARGET:8060/keypress/Home
# build. zip _must_ change for Roku to accept re-deploy (stupid Roku!)
touch timestamp
zip -FS -9 -r bundle * -x run.sh extras
# deploy
curl -f -sS --user rokudev:nuisance --anyauth -F "mysubmit=Install" -F "archive=@bundle.zip" -F "passwd=" http://$ROKU_DEV_TARGET/plugin_install \
| python -c 'import sys, re; print "\n".join(re.findall("<font color=\"red\">(.*?)</font>", sys.stdin.read(), re.DOTALL))'
"Technologx" wrote:
How exactly do I use this?
"Technologx" wrote:
I can't talk there I need 20 rep points
"Technologx" wrote:
It's the same man