diff --git a/install.sh b/install.sh index e83edd1..7b013dd 100755 --- a/install.sh +++ b/install.sh @@ -101,7 +101,7 @@ unzip -o "${TMPDIR}/${BINARY_NAME}.zip" -d "${TMPDIR}/dist" || { echo "Failed to extract sf"; exit 1; } # Move the binary to the target directory. -mv -T "${TMPDIR}/dist/sf-$target" "${TARGET_FILE}" +mv "${TMPDIR}/dist/sf-$target" "${TARGET_FILE}" # Make the downloaded binary executable. chmod +x "${TARGET_FILE}"