mirror of
https://github.com/NixOS/nix.git
synced 2025-11-26 20:20:58 +01:00
Before modifying commit shell script
This commit is contained in:
parent
cbd0d39583
commit
653e557e81
10 changed files with 140 additions and 91 deletions
|
|
@ -90,7 +90,13 @@ struct DerivationStateOutputDir
|
|||
}
|
||||
|
||||
int getInterval(){
|
||||
return 0; //TODO
|
||||
if(interval == "")
|
||||
return 0;
|
||||
else{
|
||||
int i;
|
||||
if (!string2Int(interval, i)) throw Error("interval is not a number");
|
||||
return i;
|
||||
}
|
||||
}
|
||||
|
||||
//sort function
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue