Files
odroid-stamper/fixups/S10-locale
Dongjin Kim 5f4bdf7085 fixups: install package 'locales' when 'local-gen' is missing
Signed-off-by: Dongjin Kim <tobetter@gmail.com>
Change-Id: I10c9bb920051918293423e40ce3c2bd920d419ed
2023-08-17 19:17:18 +09:00

8 lines
103 B
Bash
Executable File

#!/bin/sh
if [ ! -f /usr/sbin/locale-gen ]; then
apt update && apt install -y locales
fi
locale-gen