move install to end
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Emil Lerch 2021-06-30 11:13:12 -07:00
parent 487abc057f
commit 13e43528b5
Signed by: lobo
GPG Key ID: A7B62D657EF764F8

View File

@ -56,7 +56,6 @@ pub fn build(b: *Builder) !void {
const is_strip = b.option(bool, "strip", "strip exe") orelse true; const is_strip = b.option(bool, "strip", "strip exe") orelse true;
exe.strip = !is_strip; exe.strip = !is_strip;
exe.install();
const run_cmd = exe.run(); const run_cmd = exe.run();
run_cmd.step.dependOn(b.getInstallStep()); run_cmd.step.dependOn(b.getInstallStep());
@ -97,4 +96,6 @@ pub fn build(b: *Builder) !void {
b.getInstallStep().dependOn(codegen); b.getInstallStep().dependOn(codegen);
test_step.dependOn(codegen); test_step.dependOn(codegen);
} }
exe.install();
} }