8 lines
205 B
Bash
8 lines
205 B
Bash
#/bin/sh
|
|
# do NOT use this script from XBMC addons directory, it is intented for development only
|
|
DESTDIR=~/.kodi/addons/plugin.video.online-files
|
|
|
|
rm -rf ${DESTDIR}
|
|
mkdir -p ${DESTDIR}
|
|
cp -a * ${DESTDIR}
|