diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2025-04-09 21:02:42 +0000 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2025-04-09 21:02:44 +0000 |
commit | 2a3d484ddf1bbda8c8fb2c2b539c8a32a8f19a7d (patch) | |
tree | 0d28d38f55785481fcb0bcbb06ad109c4459b6d9 | |
parent | b046dc4da020b7a01f4f733b46b43651ff4ce7af (diff) | |
download | meta-cloud-services-2a3d484ddf1bbda8c8fb2c2b539c8a32a8f19a7d.tar.gz |
recipes: fix whitspace around assignement
bitbake will now warn if there isn't space around assignemnts,
so we adjust our recipes accordingly.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-support/puppet-vswitch/puppet-vswitch_git.bb | 2 | ||||
-rw-r--r-- | recipes-support/puppetlabs-stdlib/puppetlabs-stdlib_git.bb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/recipes-support/puppet-vswitch/puppet-vswitch_git.bb b/recipes-support/puppet-vswitch/puppet-vswitch_git.bb index a600466..b241328 100644 --- a/recipes-support/puppet-vswitch/puppet-vswitch_git.bb +++ b/recipes-support/puppet-vswitch/puppet-vswitch_git.bb | |||
@@ -16,7 +16,7 @@ inherit rubyv2 | |||
16 | GEM_NAME = "puppetlabs-std" | 16 | GEM_NAME = "puppetlabs-std" |
17 | GEM_SPEC_FILE = "puppet-vswitch.gemspec" | 17 | GEM_SPEC_FILE = "puppet-vswitch.gemspec" |
18 | 18 | ||
19 | S="${WORKDIR}/git" | 19 | S = "${WORKDIR}/git" |
20 | 20 | ||
21 | DEPENDS += " \ | 21 | DEPENDS += " \ |
22 | ruby \ | 22 | ruby \ |
diff --git a/recipes-support/puppetlabs-stdlib/puppetlabs-stdlib_git.bb b/recipes-support/puppetlabs-stdlib/puppetlabs-stdlib_git.bb index cb343e4..8a3c1de 100644 --- a/recipes-support/puppetlabs-stdlib/puppetlabs-stdlib_git.bb +++ b/recipes-support/puppetlabs-stdlib/puppetlabs-stdlib_git.bb | |||
@@ -16,7 +16,7 @@ inherit rubyv2 | |||
16 | GEM_NAME = "puppetlabs-std" | 16 | GEM_NAME = "puppetlabs-std" |
17 | GEM_SPEC_FILE = "puppetlabs-stdlib.gemspec" | 17 | GEM_SPEC_FILE = "puppetlabs-stdlib.gemspec" |
18 | 18 | ||
19 | S="${WORKDIR}/git" | 19 | S = "${WORKDIR}/git" |
20 | 20 | ||
21 | DEPENDS += " \ | 21 | DEPENDS += " \ |
22 | ruby \ | 22 | ruby \ |