mirror of
https://github.com/ventoy/Ventoy.git
synced 2024-11-04 06:00:13 +00:00
849dfb463d
2. The update button is available even if data corrupted in VTOYEFI partition. 3. Set the default focus to No when you click Install button in Ventoy2Disk.exe. 4. Fix a BUG when booting Windows VHD(x) with the latest ventoy_vhdboot.img. 5. Support boot Windows VHD(x) files in local disk.
20 lines
417 B
Bash
20 lines
417 B
Bash
#!/bin/bash
|
|
|
|
VTOY_PATH=$PWD/../
|
|
|
|
echo "checking languages.json ..."
|
|
sh $VTOY_PATH/LANGUAGES/check.sh $VTOY_PATH || exit 1
|
|
|
|
echo "generating languages.json ..."
|
|
|
|
echo "var vtoy_language_data = " > languages.js
|
|
cat $VTOY_PATH/LANGUAGES/languages.json >> languages.js
|
|
echo ";" >> languages.js
|
|
|
|
dos2unix languages.js
|
|
|
|
rm -f WebUI/static/js/languages.js
|
|
mv languages.js WebUI/static/js/
|
|
|
|
echo "====== SUCCESS =========="
|