Merge "make USER limited to 6 characters when generating BUILD_NUMBER" am: e9430e2361
am: 71aaa02533
* commit '71aaa02533a5a4c91bb360d4f5cfa9d11dc2c160':
make USER limited to 6 characters when generating BUILD_NUMBER
This commit is contained in:
@@ -146,5 +146,5 @@ ifeq "" "$(BUILD_NUMBER)"
|
||||
# If no BUILD_NUMBER is set, create a useful "I am an engineering build
|
||||
# from this date/time" value. Make it start with a non-digit so that
|
||||
# anyone trying to parse it as an integer will probably get "0".
|
||||
BUILD_NUMBER := eng.$(USER).$(shell $(DATE) +%Y%m%d.%H%M%S)
|
||||
BUILD_NUMBER := eng.$(shell echo $${USER:0:6}).$(shell $(DATE) +%Y%m%d.%H%M%S)
|
||||
endif
|
||||
|
Reference in New Issue
Block a user