Skip to content
This repository has been archived by the owner on Aug 14, 2023. It is now read-only.

Commit

Permalink
Merge pull request #10 from hypriot/fix-whoami
Browse files Browse the repository at this point in the history
Fix BUILD_GROUP with id -g -n for standalone builds
  • Loading branch information
StefanScherer committed Oct 1, 2015
2 parents 2d00205 + 7569708 commit 6d00833
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/compile_kernel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ if [ -d /vagrant ]; then
else
# running in drone build
SRC_DIR=`pwd`
BUILD_USER=`whoami`
BUILD_GROUP=`whoami`
BUILD_USER=`id -u -n`
BUILD_GROUP=`id -g -n`
fi

LINUX_KERNEL_CONFIGS=$SRC_DIR/kernel_configs
Expand Down

0 comments on commit 6d00833

Please sign in to comment.