Commit 13f1f2f1 authored by Oswald Buddenhagen's avatar Oswald Buddenhagen
Browse files

don't error out on non-existing projects


instead, silently ignore them - they typically stem from missing
repositories (usually, the obsolete ones).

Change-Id: Iaec00f8e88e4977bd820d1b8c3b5b8d5be30c72b
Reviewed-by: default avatarFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>
Reviewed-by: default avatarJoerg Bornemann <joerg.bornemann@theqtcompany.com>
Showing with 3 additions and 1 deletion
...@@ -13,7 +13,9 @@ TS_TARGETS = ...@@ -13,7 +13,9 @@ TS_TARGETS =
defineTest(addTsTarget) { defineTest(addTsTarget) {
dir = $$section(PWD, /, 0, -3) dir = $$section(PWD, /, 0, -3)
for(p, 3): \ for(p, 3): \
pros += -pro-out $$shadowed($$dir/$$dirname(p)) $$p exists($$dir/$$p): \
pros += -pro-out $$shadowed($$dir/$$dirname(p)) $$p
isEmpty(pros): return()
cv = $${2}.commands cv = $${2}.commands
$$cv = cd $$dir && $$LUPDATE $$pros -ts $$4 $$cv = cd $$dir && $$LUPDATE $$pros -ts $$4
export($$cv) export($$cv)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment