adapt projectSetup.sh for use with lib.zig and raylib submodule

This commit is contained in:
Jesse Rudolph 2020-05-24 18:13:31 -05:00
parent 8771f17efb
commit 7fc94954b9
2 changed files with 22 additions and 14 deletions

View file

@ -84,9 +84,9 @@ pub fn Pkg(pkgdir: comptime []const u8) type {
std.debug.warn("unable to create child process for git. build interrupted\n", .{});
std.os.exit(1);
};
git_proc.cwd = pkgdir;
const term = git_proc.spawnAndWait() catch {
std.debug.warn("unable to spawn child processfor git. build interrupted\n", .{});
std.debug.warn("unable to spawn child process for git. build interrupted\n", .{});
std.os.exit(1);
};