Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Nov 29, 2024
1 parent b3932a3 commit b1d4c92
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/Function/Pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,15 @@ export default (async (
) => {
for (const [_Output, _Input] of Plan.Results) {
Plan.On.Input = _Input;

Plan.On.Output = _Output;

try {
Plan.On.Before = (await stat(Plan.On.Input)).size;

if (Read && Wrote) {
Plan.On.Buffer = await Read(Plan.On);

Plan.On.Buffer = await Wrote(Plan.On);

if (!Plan.On.Buffer) {
Expand Down
1 change: 1 addition & 0 deletions Source/Interface/Cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
*/
export default interface Interface {
Search: string | URL;

Folder: string | URL;
}

0 comments on commit b1d4c92

Please sign in to comment.