tangled
alpha
login
or
join now
oppi.li
/
indigo-ci
porting all github actions from bluesky-social/indigo to tangled CI
1
fork
atom
overview
issues
pulls
pipelines
goat: add missing error check
reis.tngl.sh
7 months ago
d66cec5d
fa0e9d00
options
unified
split
Changed files
+1
-1
cmd
goat
repo.go
+1
-1
cmd/goat/repo.go
···
302
302
303
303
recPath := topDir + "/" + string(k)
304
304
fmt.Printf("%s.json\n", recPath)
305
305
-
os.MkdirAll(filepath.Dir(recPath), os.ModePerm)
305
305
+
err = os.MkdirAll(filepath.Dir(recPath), os.ModePerm)
306
306
if err != nil {
307
307
return err
308
308
}