Skip to content

Commit 33c2bc5

Browse files
authored
Merge pull request #105 from JuliaPackaging/kf/travisprint
Pass the correct repo to `print_travis_buildjl`
2 parents aa38948 + 6826127 commit 33c2bc5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/wizard/deploy.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -349,13 +349,13 @@ function github_deploy(state::WizardState)
349349
This repository was created using [BinaryBuilder.jl](https://github.com/JuliaPackaging/BinaryBuilder.jl)
350350
""")
351351
end
352-
# Append the build.jl generation on travis
353-
open(joinpath(repo_dir, "build_tarballs.jl"), "a") do f
354-
print_travis_buildjl(f, repo)
355-
end
356352
# Create the GitHub repository
357353
gr = GitHub.create_repo(GitHub.Owner(PkgDev.GitHub.user()),
358354
github_name; auth=auth)
355+
# Append the build.jl generation on travis
356+
open(joinpath(repo_dir, "build_tarballs.jl"), "a") do f
357+
print_travis_buildjl(f, gr)
358+
end
359359
# Push the empty commit
360360
LibGit2.push(repo, remoteurl="https://github.com/$(user)/$(github_name).git",
361361
payload=Nullable(LibGit2.UserPasswordCredentials(deepcopy(user),deepcopy(token))),

0 commit comments

Comments
 (0)