aboutsummaryrefslogtreecommitdiff
path: root/src/libfetchers
diff options
context:
space:
mode:
authorCarlo Nucera <carlo.nucera@protonmail.com>2020-08-05 15:14:47 -0400
committerCarlo Nucera <carlo.nucera@protonmail.com>2020-08-05 15:14:47 -0400
commitbe6e1c645707cd91d160bcfbedb9cd23cf24780d (patch)
tree00ca0b0b1459faa6cf7d2d96df0d9f80b0a4d5d9 /src/libfetchers
parent1ad6394b33b5e627c27bc26247f8a5e1d7d81ce1 (diff)
parentb3e73547a03f068ae4dd9cca4bc865cde85c8dec (diff)
Merge branch 'master' of github.com:NixOS/nix into make-narHash-not-optional
Diffstat (limited to 'src/libfetchers')
-rw-r--r--src/libfetchers/git.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libfetchers/git.cc b/src/libfetchers/git.cc
index 800bca9ed..8b6e047f1 100644
--- a/src/libfetchers/git.cc
+++ b/src/libfetchers/git.cc
@@ -121,7 +121,7 @@ struct GitInputScheme : InputScheme
args.push_back(*ref);
}
- if (input.getRev()) throw Error("cloning a specific revision is not implemented");
+ if (input.getRev()) throw UnimplementedError("cloning a specific revision is not implemented");
args.push_back(destDir);