Skip to content

Commit 68c720b

Browse files
arschlesAaron Schlesinger
authored andcommitted
fix(build.go): correct typo in path
1 parent ea924f7 commit 68c720b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkg/gitreceive/build.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ func build(conf *Config, builderKey, gitSha string) error {
8686
tmpDir := os.TempDir()
8787

8888
tarURL := fmt.Sprintf("%s://%s:%s/git/home/%s/tar", storage.schema(), storage.host(), storage.port(), slugName)
89-
pushURL := fmt.Sprintf("%s://%s:%s/git/hom/%s/push", storage.schema(), storage.host(), storage.port(), slugName)
89+
pushURL := fmt.Sprintf("%s://%s:%s/git/home/%s/push", storage.schema(), storage.host(), storage.port(), slugName)
9090

9191
// build a tarball from the new objects
9292
gitArchiveCmd := repoCmd(repoDir, "git", "archive", "--format=tar.gz", fmt.Sprintf("--output=%s.tar.gz", appName), gitSha)

0 commit comments

Comments
 (0)