debugging for Write()
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
d1ed400854
commit
177e665244
7
wget.go
7
wget.go
|
@ -76,9 +76,13 @@ func WgetToFile(filepath string, url string) error {
|
||||||
// BUGS: The author's idea of friendly may differ to that of many other people.
|
// BUGS: The author's idea of friendly may differ to that of many other people.
|
||||||
//
|
//
|
||||||
func Write(filepath string, data string) bool {
|
func Write(filepath string, data string) bool {
|
||||||
|
// TODO: this isn't working for some reason and is making two '\n' chars
|
||||||
|
// probably because Chomp() isn't fixed yet
|
||||||
data = Chomp(data) + "\n"
|
data = Chomp(data) + "\n"
|
||||||
// Create the file
|
// Create the file
|
||||||
out, err := os.Create(Path(filepath))
|
ospath := Path(filepath)
|
||||||
|
log.Println("shell.Write() START ospath =", ospath, "filepath =", filepath)
|
||||||
|
out, err := os.Create(ospath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
@ -92,5 +96,6 @@ func Write(filepath string, data string) bool {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
handleError(nil, int(count))
|
handleError(nil, int(count))
|
||||||
|
log.Println("shell.Write() END", ospath)
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue