mirror of
https://github.com/2009scape/2009Scape-mobile.git
synced 2025-12-20 13:30:15 -07:00
8 lines
217 B
Bash
8 lines
217 B
Bash
#!/bin/bash
|
|
|
|
THISDIR=`dirname $0`
|
|
LANGFILE=$THISDIR/../app_pojavlauncher/src/main/assets/language_list.txt
|
|
|
|
rm -f $LANGFILE
|
|
echo $THISDIR/../app_pojavlauncher/src/main/res/values-* | xargs -- basename -a > $LANGFILE
|
|
|