Skip to content

Commit

Permalink
docs: fix description of tasks' skip conditions [skip ci] (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
v1nc3n4 authored Aug 19, 2023
1 parent b176b5d commit 97e041b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ With their feedback, plugin improvement is possible. Special thanks to:
@[joschi](https://github.com/joschi),
@[jorgheymans](https://github.com/jorgheymans),
@[ludik0](https://github.com/ludik0),
@[mhalbritter](https://github.com/mhalbritter),
@[mike-howell](https://github.com/mike-howell),
@[napstr](https://github.com/napstr),
@[nitzan-n](https://github.com/nitzan-n),
Expand Down
2 changes: 1 addition & 1 deletion site/src/components/task/assemble-frontend-task.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<fgp-task name="assembleFrontend" :inputs="inputs">
<template #title>Assemble frontend artifacts</template>
<template #skipConditions>
property <fgp-property-link name="assembleScript" /> is not <fgp-code>null</fgp-code>.
property <fgp-property-link name="assembleScript" /> is <fgp-code>null</fgp-code>.
</template>
<template #description>
This task allows to execute a build script as part of a Gradle build. The build script shall be defined in
Expand Down
2 changes: 1 addition & 1 deletion site/src/components/task/check-frontend-task.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<fgp-task name="checkFrontend" :inputs="inputs">
<template #title>Check frontend application</template>
<template #skipConditions>
property <fgp-property-link name="checkScript" /> is not <fgp-code>null</fgp-code>.
property <fgp-property-link name="checkScript" /> is <fgp-code>null</fgp-code>.
</template>
<template #description>
<p>
Expand Down
2 changes: 1 addition & 1 deletion site/src/components/task/clean-frontend-task.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<fgp-task name="cleanFrontend" :inputs="inputs">
<template #title>Clean frontend artifacts</template>
<template #skipConditions>
property <fgp-property-link name="cleanScript" /> is not <fgp-code>null</fgp-code>.
property <fgp-property-link name="cleanScript" /> is <fgp-code>null</fgp-code>.
</template>
<template #description>
<p>
Expand Down
4 changes: 2 additions & 2 deletions site/src/components/task/publish-frontend-task.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<fgp-task name="publishFrontend" :inputs="inputs">
<template #title>Publish frontend artifacts</template>
<template #skipConditions>
properties <fgp-property-link name="assembleScript" /> and <fgp-property-link name="publishScript" /> are
both not <fgp-code>null</fgp-code>.
either property <fgp-property-link name="assembleScript" /> or property
<fgp-property-link name="publishScript" /> is <fgp-code>null</fgp-code>.
</template>
<template #description>
<p>
Expand Down

0 comments on commit 97e041b

Please sign in to comment.