9 lines
208 B
Bash
9 lines
208 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
cd /root/.minetest/games/OCD3/mods/minetest-skinsdb
|
||
|
|
||
|
# this tarball updates with new uploads every hour
|
||
|
wget https://libregamenight.xyz/minetest/skins.tar.gz
|
||
|
tar -zxvf skins.tar.gz
|
||
|
rm skins.tar.gz
|