2013-03-27, 20:18
HOW-TO:
Get the latest GIT changes in order to TEST the GIT version, it is not the official release and some problems may exists with the add-on:
I'm using Raspberry Pi so:
I tested this and its working.
Obs:
You must have GIT installed before running the second line above
pi@raspbmc: sudo apt-get install git-core
You can also create a shell script
paste (If you're using Putty, just right click with mouse to paste):
press CTRL+O to Write
press CTRL+X to Save
Set an executable permission:
To run script:
I'm new to linux and I guess others are too - mainly RPI users.
Get the latest GIT changes in order to TEST the GIT version, it is not the official release and some problems may exists with the add-on:
I'm using Raspberry Pi so:
Code:
pi@raspbmc: sudo rm -R /home/pi/.xbmc/addons/script.trakt
pi@raspbmc: sudo git clone https://github.com/rectifyer/script.trakt.git /home/pi/.xbmc/addons/script.trakt
I tested this and its working.
Obs:
You must have GIT installed before running the second line above
pi@raspbmc: sudo apt-get install git-core
You can also create a shell script
Code:
pi@raspbmc: sudo nano /home/pi/trakt_sync.sh
paste (If you're using Putty, just right click with mouse to paste):
Code:
#!/bin/bash
clear
sudo rm -R /home/pi/.xbmc/addons/script.trakt
sudo git clone https://github.com/rectifyer/script.trakt.git /home/pi/.xbmc/addons/script.trakt
sudo rm -R /home/pi/.xbmc/addons/script.trakt/.git
sudo chown -R pi /home/pi/.xbmc/addons/script.trakt
press CTRL+O to Write
press CTRL+X to Save
Set an executable permission:
Code:
pi@raspbmc: sudo chmod +x trakt_sync.sh
To run script:
Code:
pi@raspbmc: sudo sh /home/pi/trakt.sh
I'm new to linux and I guess others are too - mainly RPI users.