mirror of https://github.com/aredn/aredn.git
bugfix: buildsteps scripts if checks rework
Checks for BUILD_SET_VERSION use wrong bracket type OSTYPE check wasn't portable to Ubuntu Change-Id: I0183f3beae068b8524dc4dff411203fdb3878e94
This commit is contained in:
parent
1271db794a
commit
bbf5a70052
|
@ -16,7 +16,7 @@ cat feeds.conf.default >> feeds.conf
|
|||
SHORT_COMMIT=$(echo "$GIT_COMMIT" | awk '{ string=substr($0, 1, 8); print string; }' )
|
||||
SHORT_BRANCH=$(echo "$GIT_BRANCH" | awk 'match($0,"/"){print substr($0,RSTART+1)}')
|
||||
|
||||
if ( -z "$BUILD_SET_VERSION" ); then
|
||||
if [ ! -z "$BUILD_SET_VERSION" ]; then
|
||||
echo "$BUILD_SET_VERSION" > "$BUILDROOTBASE/files/etc/mesh-release"
|
||||
else
|
||||
echo "${SHORT_BRANCH}-${BUILD_NUMBER}-${SHORT_COMMIT}" > "$BUILDROOTBASE/files/etc/mesh-release"
|
||||
|
|
|
@ -26,7 +26,7 @@ rm -Rf staging_dir/*
|
|||
SHORT_COMMIT=$(echo "$GIT_COMMIT" | awk '{ string=substr($0, 1, 8); print string; }' )
|
||||
SHORT_BRANCH=$(echo "$GIT_BRANCH" | awk 'match($0,"/"){print substr($0,RSTART+1)}')
|
||||
|
||||
if ( -z "$BUILD_SET_VERSION" ); then
|
||||
if [ ! -z "$BUILD_SET_VERSION" ]; then
|
||||
MYBUILDNAME="$BUILD_SET_VERSION"
|
||||
else
|
||||
MYBUILDNAME="${SHORT_BRANCH}-${BUILD_NUMBER}-${SHORT_COMMIT}"
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
LICENSE
|
||||
|
||||
if [[ $OSTYPE == darwin* ]]
|
||||
if [ "${OSTYPE#*darwin}" != "$OSTYPE" ]
|
||||
then
|
||||
export SCRIPTBASE=$(dirname $0)
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue