aboutsummaryrefslogtreecommitdiff
path: root/lib/subcommands/add.bash
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2023-03-10 10:49:16 +0100
committerPatrick Spek <p.spek@tyil.nl>2023-03-10 10:49:16 +0100
commit37749ec5c115adff9ed10d9a829f9af5f29776f4 (patch)
tree0a78f64bbc6f34261f32585bf9de721af20b96bb /lib/subcommands/add.bash
parent28c55aa1a8c82def2ffdb3e000812a5523371ac5 (diff)
Update new code for shellcheck compliancy
Diffstat (limited to 'lib/subcommands/add.bash')
-rw-r--r--lib/subcommands/add.bash6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/subcommands/add.bash b/lib/subcommands/add.bash
index 644c04f..db3ec40 100644
--- a/lib/subcommands/add.bash
+++ b/lib/subcommands/add.bash
@@ -8,6 +8,8 @@ subcommand()
{
local buffer
local missing_vars=0
+ local playbook_base
+ local playbook_registry
export BASHTARD_PLAYBOOK="$1" ; shift
@@ -17,8 +19,8 @@ subcommand()
return 2
fi
- local playbook_base="$(playbook_path "base")"
- local playbook_registry="$BASHTARD_ETCDIR/registry.d/${BASHTARD_PLATFORM[fqdn]}"
+ playbook_base="$(playbook_path "base")"
+ playbook_registry="$BASHTARD_ETCDIR/registry.d/${BASHTARD_PLATFORM[fqdn]}"
# Make sure we only run add if the playbook is not in the registry yet
if grep -Fqx "$BASHTARD_PLAYBOOK" "$playbook_registry"