vfarcic / crossplane-tutorial

42 stars 276 forks source link

Fix shell error running the setup scripts #13

Closed irizzant closed 5 months ago

irizzant commented 5 months ago

This pull request includes changes to the setup scripts to improve the compatibility of conditional statements. The changes involve modifying the comparison operator in the if statements from == to =. This change is made across multiple files including 01-managed-resources.sh, 02-compositions.sh, 03-configurations.sh, and 04-functions.sh.

Changes to conditional statements:

These changes are aimed at improving the compatibility of the scripts with different shells as the = operator is more portable across different shells compared to ==.

vfarcic commented 5 months ago

Thanks a ton.