mirror of
https://github.com/2009scape/2009Scape-mobile.git
synced 2025-12-19 21:10:11 -07:00
8 lines
217 B
Bash
Executable file
8 lines
217 B
Bash
Executable file
#!/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
|
|
|