Skip to content
Snippets Groups Projects
Commit 6db38607 authored by Bob Mottram's avatar Bob Mottram
Browse files

More info on copy failure

parent d9f424c9
No related branches found
No related tags found
No related merge requests found
......@@ -214,7 +214,11 @@ function mesh_upgrade_golang {
exit 356356785
fi
# shellcheck disable=SC2086
cp ${rootdir}/home/go/go${GO_VERSION}/bin/* "${rootdir}/usr/bin"
if ! cp ${rootdir}/home/go/go${GO_VERSION}/bin/* "${rootdir}/usr/bin"; then
ls -la "${rootdir}/home/go/go${GO_VERSION}"
echo $'Copying golang binaries failed'
exit 246824628
fi
}
function upgrade_golang {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment