diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2017-11-04 17:08:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-04 17:08:04 -0700 |
commit | 05fa3026551fd1fc7895ea5cfaed001c2bb1af55 (patch) | |
tree | d165158ef0c1091d7320e87df4c3a1d9de0551d9 /share | |
parent | 386e0af0898d769e7f01bc4398f1710a8d613038 (diff) | |
download | spack-05fa3026551fd1fc7895ea5cfaed001c2bb1af55.tar.gz spack-05fa3026551fd1fc7895ea5cfaed001c2bb1af55.tar.bz2 spack-05fa3026551fd1fc7895ea5cfaed001c2bb1af55.tar.xz spack-05fa3026551fd1fc7895ea5cfaed001c2bb1af55.zip |
Replace github.com/llnl/spack with github.com/spack/spack (#6142)
We moved to a new GitHub org! Now make the code and docs reflect that.
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/setup-env.csh | 2 | ||||
-rwxr-xr-x | share/spack/setup-env.sh | 2 | ||||
-rwxr-xr-x | share/spack/spack-completion.bash | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/share/spack/setup-env.csh b/share/spack/setup-env.csh index c0f82bd0ae..6fc728daa8 100755 --- a/share/spack/setup-env.csh +++ b/share/spack/setup-env.csh @@ -6,7 +6,7 @@ # Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved. # LLNL-CODE-647188 # -# For details, see https://github.com/llnl/spack +# For details, see https://github.com/spack/spack # Please also see the NOTICE and LICENSE files for our notice and the LGPL. # # This program is free software; you can redistribute it and/or modify diff --git a/share/spack/setup-env.sh b/share/spack/setup-env.sh index 6ac38967ba..21a7e00345 100755 --- a/share/spack/setup-env.sh +++ b/share/spack/setup-env.sh @@ -6,7 +6,7 @@ # Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved. # LLNL-CODE-647188 # -# For details, see https://github.com/llnl/spack +# For details, see https://github.com/spack/spack # Please also see the NOTICE and LICENSE files for our notice and the LGPL. # # This program is free software; you can redistribute it and/or modify diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash index 044ea448fd..56cbfef792 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -6,7 +6,7 @@ # Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved. # LLNL-CODE-647188 # -# For details, see https://github.com/llnl/spack +# For details, see https://github.com/spack/spack # Please also see the NOTICE and LICENSE files for our notice and the LGPL. # # This program is free software; you can redistribute it and/or modify @@ -54,7 +54,7 @@ function _bash_completion_spack { # and `spack compiler add []` will call _spack_compiler_add local subfunction=$(IFS='_'; echo "_${COMP_WORDS_NO_FLAGS[*]}") # Translate dashes to underscores, as dashes are not permitted in - # compatibility mode. See https://github.com/LLNL/spack/pull/4079 + # compatibility mode. See https://github.com/spack/spack/pull/4079 subfunction=${subfunction//-/_} # However, the word containing the current cursor position needs to be |