Make sure USER and HOME variables are defined

This commit is contained in:
ZyX 2015-02-21 01:51:58 +03:00
parent be3fd917a9
commit e7c381a63f
1 changed files with 5 additions and 0 deletions

View File

@ -1,6 +1,11 @@
#!/bin/bash
. tests/bot-ci/scripts/common/main.sh
: ${USER:=`id -un`}
: ${HOME:=`getent passwd $USER | cut -d: -f6`}
export USER HOME
FAILED=0
export PATH="/opt/fish/bin:${PATH}"