Merge lp:~azzar1/unity/fix-unity-script-crash into lp:unity

Proposed by Andrea Azzarone
Status: Merged
Approved by: Marco Trevisan (Treviño)
Approved revision: no longer in the source branch.
Merged at revision: 4103
Proposed branch: lp:~azzar1/unity/fix-unity-script-crash
Merge into: lp:unity
Diff against target: 14 lines (+2/-2)
1 file modified
tools/unity.cmake (+2/-2)
To merge this branch: bzr merge lp:~azzar1/unity/fix-unity-script-crash
Reviewer Review Type Date Requested Status
Marco Trevisan (Treviño) Approve
Review via email: mp+291401@code.launchpad.net

Commit message

Fix unity script crash.

Description of the change

Fix unity script crash.

To post a comment you must log in.
Revision history for this message
Marco Trevisan (Treviño) (3v1n0) wrote :

Thanks

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'tools/unity.cmake'
2--- tools/unity.cmake 2016-03-30 02:36:30 +0000
3+++ tools/unity.cmake 2016-04-08 18:14:52 +0000
4@@ -96,8 +96,8 @@
5
6 if options.verbose:
7 cli.append("--debug")
8- if args:
9- cli.extend(options.compiz_args)
10+ if compiz_args:
11+ cli.extend(compiz_args)
12
13 if options.log:
14 cli.extend(['2>&1', '|', 'tee', options.log])