Skip to content

Commit 1531083

Browse files
committed
[fix] : FIxed SC2005
1 parent 807c4ce commit 1531083

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/clean.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ work_dir="$(
2626
load_config "${script_path}/default.conf"
2727
load_config "${script_path}/custom.conf"
2828
cd "${script_path}"
29-
echo "$(realpath "${work_dir}")"
29+
realpath "${work_dir}"
3030
)"
3131

3232
# msg_common [type] [-n] [string]
@@ -62,7 +62,7 @@ umount_chroot () { "${tools_dir}/umount.sh" -d "${work_dir}" -m 3 "$([[ "${nocol
6262

6363
# Usage: getclm <number>
6464
# 標準入力から値を受けとり、引数で指定された列を抽出します。
65-
getclm() { echo "$(cat -)" | cut -d " " -f "${1}"; }
65+
getclm() { cut -d " " -f "${1}"; }
6666

6767
_help() {
6868
echo "usage ${0} [option]"

0 commit comments

Comments
 (0)