Skip to content

Commit

Permalink
roblox/bootstrapper: woopsies :3
Browse files Browse the repository at this point in the history
  • Loading branch information
apprehensions committed Jan 30, 2024
1 parent 090224f commit e7386f4
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions roblox/bootstrapper/package.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func (p *Package) Download(dest, deployURL string) error {

log.Printf("Downloading Package %s (%s)", p.Name, dest)

if err := netutil.Download(deployURL+"-"+p.Name, dest); err == nil {
if err := netutil.Download(deployURL+"-"+p.Name, dest); err != nil {
return fmt.Errorf("download package %s: %w", p.Name, err)
}

Expand All @@ -71,8 +71,3 @@ func (p *Package) Extract(src, dest string) error {
log.Printf("Extracted Package %s (%s): %s", p.Name, p.Checksum, dest)
return nil
}

func verifyFileMD5(name string, sum string) error {

return nil
}

0 comments on commit e7386f4

Please sign in to comment.