Changed assets.sh to create a symbolic link to the assets folder.

This commit is contained in:
Martín Lucas Golini
2013-05-29 15:19:50 -03:00
parent bd62abfe02
commit aae1bfebbd
2 changed files with 3 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
Create a symbolic link to the assets folder in this current folder ( ln -s ../../assets ./assets )
Create a symbolic link to the assets folder in this current folder ( call assets.sh or ln -s ../../assets ./assets )
If you are in Windows and you don't know how to make the symbolic link, just copy & paste the assets folder.

View File

@@ -1,3 +1,4 @@
#!/bin/sh
adb push ../../assets /sdcard/assets
#adb push ../../assets /sdcard/assets
ln -s ../../assets ./assets