Merge lp:~zeller-benjamin/qtcreator-plugin-ubuntu/lp1476647 into lp:qtcreator-plugin-ubuntu

Proposed by Benjamin Zeller
Status: Merged
Approved by: Zoltan Balogh
Approved revision: 424
Merged at revision: 430
Proposed branch: lp:~zeller-benjamin/qtcreator-plugin-ubuntu/lp1476647
Merge into: lp:qtcreator-plugin-ubuntu
Diff against target: 18 lines (+3/-1)
1 file modified
share/qtcreator/ubuntu/scripts/local_create_emulator (+3/-1)
To merge this branch: bzr merge lp:~zeller-benjamin/qtcreator-plugin-ubuntu/lp1476647
Reviewer Review Type Date Requested Status
Zoltan Balogh Approve
PS Jenkins bot continuous-integration Approve
Review via email: mp+278672@code.launchpad.net

Commit message

Fix Bug lp:1476647 local_create_emulator chowns with group name same as user name

Description of the change

Fix Bug lp:1476647 local_create_emulator chowns with group name same as user name

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
Zoltan Balogh (bzoltan) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'share/qtcreator/ubuntu/scripts/local_create_emulator'
--- share/qtcreator/ubuntu/scripts/local_create_emulator 2014-11-27 12:26:56 +0000
+++ share/qtcreator/ubuntu/scripts/local_create_emulator 2015-11-26 08:09:13 +0000
@@ -24,6 +24,8 @@
24WHOAMI=$624WHOAMI=$6
25USERHOME=$725USERHOME=$7
2626
27GROUP=$(id -gn ${WHOAMI})
28
27if [[ -z ${EMULATOR_CHANNEL} ]]; then29if [[ -z ${EMULATOR_CHANNEL} ]]; then
28 EMULATOR_CHANNEL="devel"30 EMULATOR_CHANNEL="devel"
29fi31fi
@@ -35,5 +37,5 @@
35fi37fi
3638
37HOME=${USERHOME} /usr/bin/ubuntu-emulator create ${EMULATOR_NAME} --arch=${EMULATOR_ARCH} --channel=${EMULATOR_CHANNEL} --password=${EMULATOR_PASSWORD}39HOME=${USERHOME} /usr/bin/ubuntu-emulator create ${EMULATOR_NAME} --arch=${EMULATOR_ARCH} --channel=${EMULATOR_CHANNEL} --password=${EMULATOR_PASSWORD}
38chown ${WHOAMI}:${WHOAMI} ${EMULATOR_PATH} -R40chown ${WHOAMI}:${GROUP} ${EMULATOR_PATH} -R
3941

Subscribers

People subscribed via source and target branches