Have claude do some completely retarded shit
This commit is contained in:
6
main.go
6
main.go
@@ -175,7 +175,7 @@ func ReadFromFilesRecursively(input string, output chan *LinkInstruction, status
|
||||
defer close(status)
|
||||
|
||||
workdir, _ := os.Getwd()
|
||||
input = NormalizePath(input, workdir)
|
||||
input = ResolvePath(input, workdir)
|
||||
LogInfo("Reading input from files recursively starting in %s", FormatPathValue(input))
|
||||
|
||||
files := make(chan string, 128)
|
||||
@@ -206,7 +206,7 @@ func ReadFromFilesRecursively(input string, output chan *LinkInstruction, status
|
||||
|
||||
// Process each file
|
||||
for _, file := range syncFiles {
|
||||
file = NormalizePath(file, workdir)
|
||||
file = ResolvePath(file, workdir)
|
||||
LogInfo("Processing file: %s", FormatPathValue(file))
|
||||
|
||||
// Change to the directory containing the sync file
|
||||
@@ -232,7 +232,7 @@ func ReadFromFile(input string, output chan *LinkInstruction, status chan error,
|
||||
defer close(status)
|
||||
}
|
||||
|
||||
input = NormalizePath(input, filepath.Dir(input))
|
||||
input = ResolvePath(input, filepath.Dir(input))
|
||||
LogInfo("Reading input from file: %s", FormatPathValue(input))
|
||||
|
||||
// Check if this is a YAML file
|
||||
|
||||
Reference in New Issue
Block a user