printf rather than echo
This commit is contained in:
parent
057fcfaa6f
commit
d57d8cf8a7
|
@ -218,7 +218,7 @@ setup_flash_kernel() {
|
|||
if [ ! -d /etc/flash-kernel ] ; then
|
||||
mkdir /etc/flash-kernel
|
||||
fi
|
||||
echo "$1" > /etc/flash-kernel/machine
|
||||
printf "%s" "$1" > /etc/flash-kernel/machine
|
||||
|
||||
command_line=""
|
||||
if [ -n "$2" ] ; then
|
||||
|
|
|
@ -112,7 +112,8 @@ function install_meteor_script {
|
|||
exit 693252
|
||||
fi
|
||||
|
||||
mv "${INSTALL_TMPDIR}/.meteor" "$meteor_dir"
|
||||
# shellcheck disable=SC2086
|
||||
mv ${INSTALL_TMPDIR}/.meteor $meteor_dir
|
||||
|
||||
meteor_cleanUp
|
||||
|
||||
|
|
Loading…
Reference in New Issue