From: Jonathan Campbell Date: Fri, 25 Mar 2016 03:46:22 +0000 (-0700) Subject: fix y.sh script X-Git-Url: http://4ch.mooo.com/gitweb/?p=16.git;a=commitdiff_plain;h=81fa3d573dcbe57b17703a21973734eb9b9f8f91 fix y.sh script --- diff --git a/y.sh b/y.sh index 19ed62f3..40b4278d 100755 --- a/y.sh +++ b/y.sh @@ -1,7 +1,16 @@ +#!/bin/bash + +# run this from the top dir of the project +topdir=`pwd` + +# force rebuild of the project wmake clean -cd src/lib/doslib +# force rebuild of doslib, make sure the latest is checked out from master +cd "$topdir/src/lib/doslib" || exit 1 git pull git checkout master git pull -. ./buildall.sh clean -. ./wbuild.sh +./buildall.sh clean +# back to top dir, build project again +cd "$topdir" || exit 1 +./wbuild.sh