Skip to content

Commit 2f4cf4e

Browse files
authored
fix: remove unnecessary extra work.
1 parent 668ad6b commit 2f4cf4e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/remote/firecrest/session_script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function install_rclone() {
4444
version="$("${rclone_bin}" version || echo "bad executable")"
4545
version="$(echo "${version}" | head -n 1)"
4646
expected="rclone v${rclone_version}"
47-
if [ "x${version}" = "x${expected}" ]; then
47+
if [ "${version}" = "${expected}" ]; then
4848
echo "${rclone_bin}"
4949
return 0
5050
else

0 commit comments

Comments
 (0)