Skip to content

Commit 0b0b956

Browse files
Correct clone cmd
Change-Id: I481d912ee6d3b7c646cc718e98042555a1e40127 Signed-off-by: danielhsh <DanielHe@nvidia.com>
1 parent 521eee3 commit 0b0b956

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

80scripts/integration_with_nixl.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@ cd /home/danielhe/projects/nixl;
4949
if false; then # Debugging / Developing GUSLI-NIXL integration
5050
rm -rf ./gusli; cp -r ../gusli .; # Copy local dev version
5151
else
52-
rm -rf ./gusli; git clone git@github.com:nvidia/gusli.git;
52+
rm -rf ./gusli;
53+
git clone https://github.com/NVIDIA/GUSLI.git; # Public repo
54+
git clone git@github.com:nvidia/gusli.git; # Private repo
55+
git clone ssh://git@github.com/nvidia/gusli.git; # Private repo
5356
fi;
5457
cd gusli && make clean all BUILD_RELEASE=1 BUILD_FOR_UNITEST=0 VERBOSE=1 ALLOW_USE_URING=0 TRACE_LEVEL=5 && cd .. && ls /usr/lib/libg* && ls /usr/include/gus*;
5558
source gusli/80scripts/service.sh;

0 commit comments

Comments
 (0)