Merge pull request #329 from leecannon/master

Call `resolveInstallPrefix` in build runner
This commit is contained in:
Alexandros Naskos 2021-05-14 03:52:03 +03:00 committed by GitHub
commit b33cb8fc0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,6 +20,7 @@ pub fn main() !void {
const builder = try Builder.create(allocator, "", "", "", "");
defer builder.destroy();
builder.resolveInstallPrefix(null);
try runBuild(builder);
const stdout_stream = io.getStdOut().writer();