Skip to content

Commit

Permalink
Remove sample symlinks
Browse files Browse the repository at this point in the history
  • Loading branch information
siggisim committed Dec 19, 2024
1 parent ea814d3 commit 1a84f45
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions app/compare/compare_execution_log_files.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -208,17 +208,11 @@ export default class CompareExecutionLogFilesComponent extends React.Component<P
?.filter((l) => l.type == "unresolvedSymlink" && l.unresolvedSymlink)
.map((l) => l.unresolvedSymlink!) || [];

symlinksA.push(new tools.protos.ExecLogEntry.UnresolvedSymlink({ path: "source/path", targetPath: "target/path" }));

const symlinksB =
this.state.logB
?.filter((l) => l.type == "unresolvedSymlink" && l.unresolvedSymlink)
.map((l) => l.unresolvedSymlink!) || [];

symlinksB.push(
new tools.protos.ExecLogEntry.UnresolvedSymlink({ path: "source/path", targetPath: "target/pathB" })
);

for (let symlink of symlinksA) {
filesA.push(
new tools.protos.ExecLogEntry.File({
Expand Down

0 comments on commit 1a84f45

Please sign in to comment.