![]() |
|
|||
File indexing completed on 2025-05-12 07:57:27
0001 #!/bin/bash 0002 set -e 0003 set -u 0004 0005 _spack_version=${SPACK_VERSION:-develop} 0006 0007 _spack_folder=$1 0008 0009 if [ ! -d "${_spack_folder}" ]; then 0010 echo "Cloning spack" 0011 git clone --branch ${_spack_version} -c feature.manyFiles=true https://github.com/spack/spack.git ${_spack_folder} 0012 pushd ${_spack_folder} > /dev/null 0013 git config user.name 'CI' 0014 git config user.email '<>' 0015 popd > /dev/null 0016 fi
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
![]() ![]() |