Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit d4c152e

Browse files
committed
Fixes incorrect checks of the simplesamlphp property.
1 parent ad3763c commit d4c152e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

phing/tasks/deploy.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787

8888
<available property="simplesamlphp" file="${blt.root}/settings/simplesamlphp.settings.php"/>
8989
<if>
90-
<istrue value="${simplesamlphp}"/>
90+
<equals arg1="${simplesamlphp}" arg2="true"/>
9191
<then>
9292
<phingcall target="simplesamlphp:deploy:config"/>
9393
</then>

phing/tasks/setup.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464

6565
<available property="simplesamlphp" file="${blt.root}/settings/simplesamlphp.settings.php"/>
6666
<if>
67-
<istrue value="${simplesamlphp}"/>
67+
<equals arg1="${simplesamlphp}" arg2="true"/>
6868
<then>
6969
<phingcall target="simplesamlphp:build:config"/>
7070
</then>

phing/tasks/simplesamlphp.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<available property="simplesamlphp" file="${blt.root}/settings/simplesamlphp.settings.php"/>
77

88
<if>
9-
<isfalse value="${simplesamlphp}"/>
9+
<not><equals arg1="${simplesamlphp}" arg2="true"/></not>
1010
<then>
1111
<phingcall target="simplesamlphp:lib:init"/>
1212

0 commit comments

Comments
 (0)