Fixed OpenSSH version tag
This commit is contained in:
parent
e2a49be0b7
commit
3e9cf83e71
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ main() {
|
|||
exit 1
|
||||
fi
|
||||
OPENSSH_VERSION=$(get_version "${BUILD_DIRECTORY}/openssh-portable/ssh -V 2>&1 | awk '{print \$1}' | sed 's/,//g'")
|
||||
version_number=$(echo "$OPENSSH_VERSION" | cut -d"_" -f2)
|
||||
version_number=$(echo "$OPENSSH_VERSION" | cut -d"-" -f2 | cut -d"_" -f2)
|
||||
cp "${BUILD_DIRECTORY}/openssh-portable/ssh" "${OUTPUT_DIRECTORY}/ssh${OPENSSH_VERSION}"
|
||||
cp "${BUILD_DIRECTORY}/openssh-portable/sshd" "${OUTPUT_DIRECTORY}/sshd${OPENSSH_VERSION}"
|
||||
echo "[+] Finished building OpenSSH ${CURRENT_ARCH}"
|
||||
|
|
Loading…
Reference in a new issue