Skip to content

Commit 78e755c

Browse files
committed
Fix #293
©! I, Hugo Landau <hlandau@devever.net>, hereby licence these changes under the ©! licence with SHA256 hash ©! fd80a26fbb3f644af1fa994134446702932968519797227e07a1368dea80f0bc.
1 parent 2c2e661 commit 78e755c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ func (tgt *Target) ensureFilename() {
194194
nprefix = tgt.Satisfy.Names[0] + "-"
195195
}
196196

197-
b := uuid.NewV4().Bytes()
197+
b := uuid.Must(uuid.NewV4()).Bytes()
198198
str := strings.ToLower(strings.TrimRight(base32.StdEncoding.EncodeToString(b), "="))
199199

200200
tgt.Filename = nprefix + str

0 commit comments

Comments
 (0)