From d666e5c19d70511ed11a5a375bf8e89d219bfa42 Mon Sep 17 00:00:00 2001 From: Vrganj Date: Sat, 16 Jan 2021 01:07:34 +0100 Subject: [PATCH] Fix C/C++ versions --- lxc/versions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lxc/versions b/lxc/versions index 583feb7..098cb92 100755 --- a/lxc/versions +++ b/lxc/versions @@ -14,11 +14,11 @@ echo '1.0.0' echo '---' echo 'c' -lxc-attach --clear-env -n piston -- /bin/bash -l -c "gcc -v" +lxc-attach --clear-env -n piston -- /bin/bash -l -c "gcc --version" echo '---' echo 'cpp' -lxc-attach --clear-env -n piston -- /bin/bash -l -c "g++ -v" +lxc-attach --clear-env -n piston -- /bin/bash -l -c "g++ --version" echo '---' echo 'csharp'