Skip to content

Commit

Permalink
Error -> UsageError
Browse files Browse the repository at this point in the history
  • Loading branch information
edolstra committed Jul 12, 2021
1 parent 8d97030 commit 91d2e8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstore/profiles.cc
Original file line number Diff line number Diff line change
Expand Up @@ -212,14 +212,14 @@ void deleteGenerationsOlderThan(const Path & profile, time_t t, bool dryRun)
void deleteGenerationsOlderThan(const Path & profile, const string & timeSpec, bool dryRun)
{
if (timeSpec.empty() || timeSpec[timeSpec.size() - 1] != 'd')
throw Error("invalid number of days specifier '%1%', expected something like '14d'", timeSpec);
throw UsageError("invalid number of days specifier '%1%', expected something like '14d'", timeSpec);

time_t curTime = time(0);
string strDays = string(timeSpec, 0, timeSpec.size() - 1);
auto days = string2Int<int>(strDays);

if (!days || *days < 1)
throw Error("invalid number of days specifier '%1%'", timeSpec);
throw UsageError("invalid number of days specifier '%1%'", timeSpec);

time_t oldTime = curTime - *days * 24 * 3600;

Expand Down

0 comments on commit 91d2e8d

Please sign in to comment.