diff options
author | Kris Moore <kris@pcbsd.org> | 2016-08-05 15:35:18 -0400 |
---|---|---|
committer | Kris Moore <kris@pcbsd.org> | 2016-08-05 15:35:18 -0400 |
commit | 565fd46fce7ad1e84db5de391f30284fcb80effa (patch) | |
tree | abccd5f4025b9d331edb29edd7a3c208bf874ba9 /mkport.sh | |
parent | Update mkport.sh (diff) | |
download | lumina-565fd46fce7ad1e84db5de391f30284fcb80effa.tar.gz lumina-565fd46fce7ad1e84db5de391f30284fcb80effa.tar.bz2 lumina-565fd46fce7ad1e84db5de391f30284fcb80effa.zip |
Don't need to sanity check repo first
Diffstat (limited to 'mkport.sh')
-rwxr-xr-x | mkport.sh | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -59,14 +59,6 @@ if [ ! -d "$distdir" ] ; then mkdir -p ${distdir} fi -echo "Sanity checking the repo..." -OBJS=`find . | grep '\.o$'` -if [ -n "$OBJS" ] ; then - echo "Found the following .o files, remove them first!" - echo $OBJS - exit 1 -fi - # Get the GIT tag ghtag=`git log -n 1 . | grep '^commit ' | awk '{print $2}'` |