summaryrefslogtreecommitdiff
path: root/lib/spack/spack/cmd/location.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/spack/spack/cmd/location.py')
-rw-r--r--lib/spack/spack/cmd/location.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/spack/spack/cmd/location.py b/lib/spack/spack/cmd/location.py
index d26587c8c4..3b72de978b 100644
--- a/lib/spack/spack/cmd/location.py
+++ b/lib/spack/spack/cmd/location.py
@@ -131,12 +131,11 @@ def location(parser, args):
print(pkg.stage.source_path)
return
- # source and build dir remain, they require the spec to be staged
+ # source dir remains, which requires the spec to be staged
if not pkg.stage.expanded:
tty.die("Source directory does not exist yet. "
"Run this to create it:",
"spack stage " + " ".join(args.spec))
- if args.source_dir:
- print(pkg.stage.source_path)
- return
+ # Default to source dir.
+ print(pkg.stage.source_path)