From 63c38568dbb509a63da68eae4618dccd6f8edd42 Mon Sep 17 00:00:00 2001 From: kokkiemouse Date: Mon, 21 Sep 2020 18:00:37 +0900 Subject: [PATCH] fixed option --- channels/lxde/airootfs/root/customize_airootfs_lxde.sh | 0 lfbs | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) mode change 100644 => 100755 channels/lxde/airootfs/root/customize_airootfs_lxde.sh diff --git a/channels/lxde/airootfs/root/customize_airootfs_lxde.sh b/channels/lxde/airootfs/root/customize_airootfs_lxde.sh old mode 100644 new mode 100755 diff --git a/lfbs b/lfbs index 704802d..64fe1eb 100755 --- a/lfbs +++ b/lfbs @@ -395,7 +395,7 @@ make_config() { # -j is obsolete in AlterISO3 and cannot be used. # -k changed in AlterISO3 from passing kernel name to passing kernel configuration. local _airootfs_script_options - _airootfs_script_options="-p '${liveuser_password}' -u '${liveuser_name}' -o '${os_name}' -s '${liveuser_shell}' -a '${arch}' -g '${locale_gen_name}' -l '${locale_name}' -z '${locale_time}' " + _airootfs_script_options="-p '${liveuser_password}' -u ${liveuser_name} -o '${os_name}' -s '${liveuser_shell}' -a '${arch}' -g '${locale_gen_name}' -l '${locale_name}' -z '${locale_time}' " # X permission local chmod_755 chmod_755() { @@ -406,10 +406,10 @@ make_config() { chmod_755 "${work_dir}/airootfs/root/customize_airootfs.sh" "${work_dir}/airootfs/root/customize_airootfs_${channel_name}.sh" if [ -f ${work_dir}/airootfs/root/customize_airootfs.sh ]; then - run_cmd /root/customize_airootfs.sh _airootfs_script_options + run_cmd /root/customize_airootfs.sh ${_airootfs_script_options} fi if [ -f ${work_dir}/airootfs/root/customize_airootfs_${channel_name}.sh ]; then - run_cmd /root/customize_airootfs_${channel_name}.sh _airootfs_script_options + run_cmd /root/customize_airootfs_${channel_name}.sh ${_airootfs_script_options} fi run_cmd ln -sf /usr/share/zoneinfo/${locale_time} /etc/localtime echo "LANG=${locale_gen_name}" > "${work_dir}/airootfs/etc/locale.conf" -- 2.11.0