Skip to content
Snippets Groups Projects
Commit 19da0807 authored by Frédéric Dalleau's avatar Frédéric Dalleau :sun_with_face:
Browse files

update-test-path: Fix architecture in PATH

parent c8df0303
No related branches found
No related tags found
No related merge requests found
PATH=${TESTPATH}/common:${TESTPATH}/bin:$PATH
TESTPATH=$(pwd)
case `uname -m` in
x86_64) PATH=${TESTPATH}/bin/amd64:$PATH; ;;
armv7l) PATH=${TESTPATH}/bin/armhf:$PATH; ;;
aarch64) PATH=${TESTPATH}/bin/:$PATH; ;;
x86_64) PATH=${TESTPATH}/amd64/bin:$PATH; ;;
armv7l) PATH=${TESTPATH}/armhf/bin:$PATH; ;;
aarch64) PATH=${TESTPATH}/arm64/bin:$PATH; ;;
esac
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