release.sh changes & fixes
. source release.functions with explicit path . make xargs touch not fail (due to too long invocations and spaces in paths) Change-Id: I448b96cebd641bf2c7b86ecbb3d1f1cb568e4f70
This commit is contained in:
parent
502b6bda83
commit
55f2063ed0
1 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
. release.functions
|
. ./release.functions
|
||||||
|
|
||||||
version_pretty="`sh ../sys/conf/osrelease.sh`"
|
version_pretty="`sh ../sys/conf/osrelease.sh`"
|
||||||
version="`echo $version_pretty | tr . _`"
|
version="`echo $version_pretty | tr . _`"
|
||||||
|
@ -212,7 +212,7 @@ then echo $PKG_ADD_URL >$RELEASEDIR/usr/pkg/etc/pkgin/repositories.conf
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo " * Resetting timestamps"
|
echo " * Resetting timestamps"
|
||||||
find $RELEASEDIR | xargs touch
|
find $RELEASEDIR -print0 | xargs -n1000 -0 touch
|
||||||
|
|
||||||
##########################################################################
|
##########################################################################
|
||||||
echo " * Build"
|
echo " * Build"
|
||||||
|
|
Loading…
Reference in a new issue