diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2023-05-19 13:39:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-19 13:39:48 +0200 |
commit | 34381d57476bf2e919c06e21713e90bfbe063b45 (patch) | |
tree | 5132500dcb9786927688228221d7a398c0e796de /src/libstore/store-api.hh | |
parent | e31d9b910dcebd77028f5d4351e2cc7205baa321 (diff) | |
parent | a6f85e052c916f1589414be1a8ba999aff993296 (diff) |
Merge pull request #8215 from obsidiansystems/general-repair-path
Support `repairPath` on most stores.
Diffstat (limited to 'src/libstore/store-api.hh')
-rw-r--r-- | src/libstore/store-api.hh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh index bad610014..2ecbe2708 100644 --- a/src/libstore/store-api.hh +++ b/src/libstore/store-api.hh @@ -679,8 +679,7 @@ public: * Repair the contents of the given path by redownloading it using * a substituter (if available). */ - virtual void repairPath(const StorePath & path) - { unsupported("repairPath"); } + virtual void repairPath(const StorePath & path); /** * Add signatures to the specified store path. The signatures are |