Merge lp:~juhapekka-piiroinen/ubuntu-qtcreator-plugins/fix-bug-1170692 into lp:ubuntu-qtcreator-plugins

Proposed by Juhapekka Piiroinen
Status: Merged
Merged at revision: 167
Proposed branch: lp:~juhapekka-piiroinen/ubuntu-qtcreator-plugins/fix-bug-1170692
Merge into: lp:ubuntu-qtcreator-plugins
Diff against target: 405 lines (+69/-27)
28 files modified
qtcreator/share/qtcreator/ubuntu/scripts/device_flashdaily (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/device_flashdaily_bootstrap (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/device_hasnetwork (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/device_network_clone (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/device_portforward (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/device_reboot (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/device_reboot2bootloader (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/device_reboot2recovery (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/device_rootshell (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/device_search (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/device_shutdown (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/device_version (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/openssh_connect (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/openssh_install (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/openssh_publickey (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/openssh_remove (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/openssh_version (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_buildanddeploypackage (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_buildpackage (+22/-1)
qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_close_all_apps (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_deploy_package (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_developertools (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_restart_appslense (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_run_app (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/qtc_project_create_package (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/qtc_project_debuild (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/qtc_project_detect_qmldeps (+1/-1)
qtcreator/share/qtcreator/ubuntu/scripts/qtc_project_packaging (+21/-0)
To merge this branch: bzr merge lp:~juhapekka-piiroinen/ubuntu-qtcreator-plugins/fix-bug-1170692
Reviewer Review Type Date Requested Status
Alan Pope 🍺🐧🐱 πŸ¦„ (community) Approve
Ubuntu SDK team Pending
Review via email: mp+159824@code.launchpad.net

Description of the change

To post a comment you must log in.
Revision history for this message
Alan Pope 🍺🐧🐱 πŸ¦„ (popey) wrote :

Seems to have some logic error during the reading of .bashrc. Details in bug report.

review: Needs Fixing
164. By Juhapekka Piiroinen

added more options for detecting DEBEMAIL and DEBFULLNAME in .bashrc

165. By Juhapekka Piiroinen

fixed issues with the export command and with the set -e

Revision history for this message
Alan Pope 🍺🐧🐱 πŸ¦„ (popey) wrote :

Looks good. Re-tested and it picks up my environment.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/device_flashdaily'
2--- qtcreator/share/qtcreator/ubuntu/scripts/device_flashdaily 2013-04-15 17:38:02 +0000
3+++ qtcreator/share/qtcreator/ubuntu/scripts/device_flashdaily 2013-04-23 16:17:39 +0000
4@@ -14,7 +14,7 @@
5 # along with this program. If not, see <http://www.gnu.org/licenses/>.
6 #
7 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
8-set -e
9+set -e;
10
11 adb root
12 adb wait-for-device
13
14=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/device_flashdaily_bootstrap'
15--- qtcreator/share/qtcreator/ubuntu/scripts/device_flashdaily_bootstrap 2013-04-15 17:38:02 +0000
16+++ qtcreator/share/qtcreator/ubuntu/scripts/device_flashdaily_bootstrap 2013-04-23 16:17:39 +0000
17@@ -14,7 +14,7 @@
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #
20 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
21-set -e
22+set -e;
23
24 adb root
25 adb wait-for-device
26
27=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/device_hasnetwork'
28--- qtcreator/share/qtcreator/ubuntu/scripts/device_hasnetwork 2013-04-08 13:34:07 +0000
29+++ qtcreator/share/qtcreator/ubuntu/scripts/device_hasnetwork 2013-04-23 16:17:39 +0000
30@@ -14,7 +14,7 @@
31 # along with this program. If not, see <http://www.gnu.org/licenses/>.
32 #
33 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
34-set -e
35+set -e;
36
37 adb root &> /dev/null
38 adb wait-for-device
39
40=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/device_network_clone'
41--- qtcreator/share/qtcreator/ubuntu/scripts/device_network_clone 2013-04-16 07:39:22 +0000
42+++ qtcreator/share/qtcreator/ubuntu/scripts/device_network_clone 2013-04-23 16:17:39 +0000
43@@ -14,7 +14,7 @@
44 # along with this program. If not, see <http://www.gnu.org/licenses/>.
45 #
46 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
47-set -e
48+set -e;
49
50 gksudo phablet-network-setup
51
52
53=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/device_portforward'
54--- qtcreator/share/qtcreator/ubuntu/scripts/device_portforward 2013-04-23 15:13:33 +0000
55+++ qtcreator/share/qtcreator/ubuntu/scripts/device_portforward 2013-04-23 16:17:39 +0000
56@@ -14,7 +14,7 @@
57 # along with this program. If not, see <http://www.gnu.org/licenses/>.
58 #
59 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
60-set -e
61+set -e;
62
63 SSHPORT=$1
64 QMLPORT=$2
65
66=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/device_reboot'
67--- qtcreator/share/qtcreator/ubuntu/scripts/device_reboot 2013-04-08 13:34:07 +0000
68+++ qtcreator/share/qtcreator/ubuntu/scripts/device_reboot 2013-04-23 16:17:39 +0000
69@@ -14,7 +14,7 @@
70 # along with this program. If not, see <http://www.gnu.org/licenses/>.
71 #
72 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
73-set -e
74+set -e;
75
76 adb root &> /dev/null
77 adb wait-for-device &> /dev/null
78
79=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/device_reboot2bootloader'
80--- qtcreator/share/qtcreator/ubuntu/scripts/device_reboot2bootloader 2013-04-15 15:49:53 +0000
81+++ qtcreator/share/qtcreator/ubuntu/scripts/device_reboot2bootloader 2013-04-23 16:17:39 +0000
82@@ -14,7 +14,7 @@
83 # along with this program. If not, see <http://www.gnu.org/licenses/>.
84 #
85 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
86-set -e
87+set -e;
88
89 adb root &> /dev/null
90 adb wait-for-device &> /dev/null
91
92=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/device_reboot2recovery'
93--- qtcreator/share/qtcreator/ubuntu/scripts/device_reboot2recovery 2013-04-08 13:34:07 +0000
94+++ qtcreator/share/qtcreator/ubuntu/scripts/device_reboot2recovery 2013-04-23 16:17:39 +0000
95@@ -14,7 +14,7 @@
96 # along with this program. If not, see <http://www.gnu.org/licenses/>.
97 #
98 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
99-set -e
100+set -e;
101
102 adb root &> /dev/null
103 adb wait-for-device &> /dev/null
104
105=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/device_rootshell'
106--- qtcreator/share/qtcreator/ubuntu/scripts/device_rootshell 2013-04-09 06:14:17 +0000
107+++ qtcreator/share/qtcreator/ubuntu/scripts/device_rootshell 2013-04-23 16:17:39 +0000
108@@ -14,7 +14,7 @@
109 # along with this program. If not, see <http://www.gnu.org/licenses/>.
110 #
111 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
112-set -e
113+set -e;
114
115 adb root &> /dev/null
116 adb wait-for-device &> /dev/null
117
118=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/device_search'
119--- qtcreator/share/qtcreator/ubuntu/scripts/device_search 2013-04-15 15:49:53 +0000
120+++ qtcreator/share/qtcreator/ubuntu/scripts/device_search 2013-04-23 16:17:39 +0000
121@@ -14,6 +14,6 @@
122 # along with this program. If not, see <http://www.gnu.org/licenses/>.
123 #
124 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
125-set -e
126+set -e;
127
128 adb devices
129
130=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/device_shutdown'
131--- qtcreator/share/qtcreator/ubuntu/scripts/device_shutdown 2013-04-15 15:49:53 +0000
132+++ qtcreator/share/qtcreator/ubuntu/scripts/device_shutdown 2013-04-23 16:17:39 +0000
133@@ -14,7 +14,7 @@
134 # along with this program. If not, see <http://www.gnu.org/licenses/>.
135 #
136 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
137-set -e
138+set -e;
139
140 adb root &> /dev/null
141 adb wait-for-device &> /dev/null
142
143=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/device_version'
144--- qtcreator/share/qtcreator/ubuntu/scripts/device_version 2013-04-15 15:49:53 +0000
145+++ qtcreator/share/qtcreator/ubuntu/scripts/device_version 2013-04-23 16:17:39 +0000
146@@ -14,7 +14,7 @@
147 # along with this program. If not, see <http://www.gnu.org/licenses/>.
148 #
149 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
150-set -e
151+set -e;
152
153 adb root &> /dev/null
154 adb wait-for-device &> /dev/null
155
156=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/openssh_connect'
157--- qtcreator/share/qtcreator/ubuntu/scripts/openssh_connect 2013-04-23 15:13:33 +0000
158+++ qtcreator/share/qtcreator/ubuntu/scripts/openssh_connect 2013-04-23 16:17:39 +0000
159@@ -14,7 +14,7 @@
160 # along with this program. If not, see <http://www.gnu.org/licenses/>.
161 #
162 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
163-set -e
164+set -e;
165
166 PORT=$1
167 USERNAME=$2
168
169=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/openssh_install'
170--- qtcreator/share/qtcreator/ubuntu/scripts/openssh_install 2013-04-16 13:31:35 +0000
171+++ qtcreator/share/qtcreator/ubuntu/scripts/openssh_install 2013-04-23 16:17:39 +0000
172@@ -14,7 +14,7 @@
173 # along with this program. If not, see <http://www.gnu.org/licenses/>.
174 #
175 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
176-set -e
177+set -e;
178
179 SCRIPTPATH=`dirname $0`
180 ${SCRIPTPATH}/qtc_device_developertools
181\ No newline at end of file
182
183=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/openssh_publickey'
184--- qtcreator/share/qtcreator/ubuntu/scripts/openssh_publickey 2013-04-23 15:23:24 +0000
185+++ qtcreator/share/qtcreator/ubuntu/scripts/openssh_publickey 2013-04-23 16:17:39 +0000
186@@ -14,7 +14,7 @@
187 # along with this program. If not, see <http://www.gnu.org/licenses/>.
188 #
189 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
190-set -e
191+set -e;
192
193 KEYPATH=~/.ssh/ubuntudevice_$2_id_rsa
194 USERNAME=$1
195
196=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/openssh_remove'
197--- qtcreator/share/qtcreator/ubuntu/scripts/openssh_remove 2013-04-15 15:49:53 +0000
198+++ qtcreator/share/qtcreator/ubuntu/scripts/openssh_remove 2013-04-23 16:17:39 +0000
199@@ -14,7 +14,7 @@
200 # along with this program. If not, see <http://www.gnu.org/licenses/>.
201 #
202 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
203-set -e
204+set -e;
205
206 adb root &> /dev/null
207 adb wait-for-device &> /dev/null
208
209=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/openssh_version'
210--- qtcreator/share/qtcreator/ubuntu/scripts/openssh_version 2013-04-16 12:56:23 +0000
211+++ qtcreator/share/qtcreator/ubuntu/scripts/openssh_version 2013-04-23 16:17:39 +0000
212@@ -14,7 +14,7 @@
213 # along with this program. If not, see <http://www.gnu.org/licenses/>.
214 #
215 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
216-set -e
217+set -e;
218
219 adb root &> /dev/null
220 adb wait-for-device &> /dev/null
221
222=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_buildanddeploypackage'
223--- qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_buildanddeploypackage 2013-04-17 18:25:19 +0000
224+++ qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_buildanddeploypackage 2013-04-23 16:17:39 +0000
225@@ -14,7 +14,7 @@
226 # along with this program. If not, see <http://www.gnu.org/licenses/>.
227 #
228 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
229-set -e
230+set -e;
231
232 FOLDERNAME=$1
233 TARGET_DEVICE=$2
234
235=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_buildpackage'
236--- qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_buildpackage 2013-04-23 15:13:33 +0000
237+++ qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_buildpackage 2013-04-23 16:17:39 +0000
238@@ -14,8 +14,29 @@
239 # along with this program. If not, see <http://www.gnu.org/licenses/>.
240 #
241 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
242+
243+
244+DEBEMAIL=`grep -G "^DEBEMAIL" ~/.bashrc`
245+DEBFULLNAME=`grep -G "^DEBFULLNAME" ~/.bashrc`
246+
247+if [[ ! -z "$DEBEMAIL" ]]; then
248+ export $DEBEMAIL
249+else
250+ CMD=`grep -G "export DEBEMAIL=" ~/.bashrc|sed "s/\"//g"`
251+ if [[ ! -z $CMD ]]; then
252+ $CMD
253+ fi
254+fi
255+if [[ ! -z $DEBFULLNAME ]]; then
256+ export $DEBFULLNAME
257+else
258+ CMD=`grep -G "export DEBFULLNAME=" ~/.bashrc|sed "s/\"//g"|sed "s/export DEBFULLNAME=//g"`
259+ if [[ ! -z $CMD ]]; then
260+ export DEBFULLNAME="$CMD"
261+ fi
262+fi
263+
264 set -e
265-#set -x
266
267 FOLDERNAME=$1
268 TARGET_DEVICE=$2
269
270=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_close_all_apps'
271--- qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_close_all_apps 2013-04-18 12:29:11 +0000
272+++ qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_close_all_apps 2013-04-23 16:17:39 +0000
273@@ -14,7 +14,7 @@
274 # along with this program. If not, see <http://www.gnu.org/licenses/>.
275 #
276 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
277-set -e
278+set -e;
279 #set -x
280
281 APPLICATION=$1
282
283=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_deploy_package'
284--- qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_deploy_package 2013-04-23 15:13:33 +0000
285+++ qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_deploy_package 2013-04-23 16:17:39 +0000
286@@ -14,7 +14,7 @@
287 # along with this program. If not, see <http://www.gnu.org/licenses/>.
288 #
289 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
290-set -e
291+set -e;
292
293 PACKAGE=$1
294 TARGET_DEVICE=$2
295
296=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_developertools'
297--- qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_developertools 2013-04-16 13:40:39 +0000
298+++ qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_developertools 2013-04-23 16:17:39 +0000
299@@ -14,7 +14,7 @@
300 # along with this program. If not, see <http://www.gnu.org/licenses/>.
301 #
302 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
303-set -e
304+set -e;
305
306 ADB="adb shell chroot /data/ubuntu /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin"
307
308
309=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_restart_appslense'
310--- qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_restart_appslense 2013-04-15 18:13:49 +0000
311+++ qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_restart_appslense 2013-04-23 16:17:39 +0000
312@@ -14,7 +14,7 @@
313 # along with this program. If not, see <http://www.gnu.org/licenses/>.
314 #
315 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
316-set -e
317+set -e;
318
319 ADB="adb shell chroot /data/ubuntu /usr/bin/env -i PATH=/bin:/usr/bin:/sbin:/usr/sbin:/tools/bin"
320
321
322=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_run_app'
323--- qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_run_app 2013-04-17 18:47:58 +0000
324+++ qtcreator/share/qtcreator/ubuntu/scripts/qtc_device_run_app 2013-04-23 16:17:39 +0000
325@@ -14,7 +14,7 @@
326 # along with this program. If not, see <http://www.gnu.org/licenses/>.
327 #
328 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
329-set -e
330+set -e;
331 #set -x
332
333 FOLDERNAME=$1
334
335=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/qtc_project_create_package'
336--- qtcreator/share/qtcreator/ubuntu/scripts/qtc_project_create_package 2013-04-18 12:25:00 +0000
337+++ qtcreator/share/qtcreator/ubuntu/scripts/qtc_project_create_package 2013-04-23 16:17:39 +0000
338@@ -14,7 +14,7 @@
339 # along with this program. If not, see <http://www.gnu.org/licenses/>.
340 #
341 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
342-set -e
343+set -e;
344
345 SCRIPTPATH=`dirname $0`
346 # -- actions --
347
348=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/qtc_project_debuild'
349--- qtcreator/share/qtcreator/ubuntu/scripts/qtc_project_debuild 2013-04-15 15:49:53 +0000
350+++ qtcreator/share/qtcreator/ubuntu/scripts/qtc_project_debuild 2013-04-23 16:17:39 +0000
351@@ -14,7 +14,7 @@
352 # along with this program. If not, see <http://www.gnu.org/licenses/>.
353 #
354 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
355-set -e
356+set -e;
357
358 # -- actions --
359 debuild -i -I -S -sa -us -uc -nc
360\ No newline at end of file
361
362=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/qtc_project_detect_qmldeps'
363--- qtcreator/share/qtcreator/ubuntu/scripts/qtc_project_detect_qmldeps 2013-04-18 11:41:47 +0000
364+++ qtcreator/share/qtcreator/ubuntu/scripts/qtc_project_detect_qmldeps 2013-04-23 16:17:39 +0000
365@@ -15,7 +15,7 @@
366 #
367 # Author: ZoltΓ‘n Balogh <zoltan.balogh@canonical.com>
368 # Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
369-set -e
370+set -e;
371
372 PROJECT_PATH=$1
373 if [[ -z ${PROJECT_PATH=} ]]; then
374
375=== modified file 'qtcreator/share/qtcreator/ubuntu/scripts/qtc_project_packaging'
376--- qtcreator/share/qtcreator/ubuntu/scripts/qtc_project_packaging 2013-04-17 18:19:27 +0000
377+++ qtcreator/share/qtcreator/ubuntu/scripts/qtc_project_packaging 2013-04-23 16:17:39 +0000
378@@ -14,6 +14,27 @@
379 # along with this program. If not, see <http://www.gnu.org/licenses/>.
380 #
381 # Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
382+
383+DEBEMAIL=`grep -G "^DEBEMAIL" ~/.bashrc`
384+DEBFULLNAME=`grep -G "^DEBFULLNAME" ~/.bashrc`
385+
386+if [[ ! -z "$DEBEMAIL" ]]; then
387+ export $DEBEMAIL
388+else
389+ CMD=`grep -G "export DEBEMAIL=" ~/.bashrc|sed "s/\"//g"`
390+ if [[ ! -z $CMD ]]; then
391+ $CMD
392+ fi
393+fi
394+if [[ ! -z $DEBFULLNAME ]]; then
395+ export $DEBFULLNAME
396+else
397+ CMD=`grep -G "export DEBFULLNAME=" ~/.bashrc|sed "s/\"//g"|sed "s/export DEBFULLNAME=//g"`
398+ if [[ ! -z $CMD ]]; then
399+ export DEBFULLNAME="$CMD"
400+ fi
401+fi
402+
403 set -e
404
405 PROJECT=$1

Subscribers

People subscribed via source and target branches