Skip to content

Commit

Permalink
Fix quote syntax error
Browse files Browse the repository at this point in the history
Signed-off-by: 1000TurquoisePogs <[email protected]>
  • Loading branch information
1000TurquoisePogs committed Feb 5, 2024
1 parent d95f529 commit f172bb5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bin/commands/init/certificate/index.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ if [ -z "${does_jcl_exist}" ]; then
fi

# should be created, but may take time to discover.
if [ -z "${does_jcl_exist"} ]; then
if [ -z "${does_jcl_exist}" ]; then
does_jcl_exist=
for secs in 1 5 10 ; do
does_jcl_exist=$(is_data_set_exists "${jcllib}")
Expand Down
2 changes: 1 addition & 1 deletion bin/commands/init/mvs/index.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if [ -z "${does_jcl_exist}" ]; then
fi

# should be created, but may take time to discover.
if [ -z "${does_jcl_exist"} ]; then
if [ -z "${does_jcl_exist}" ]; then
does_jcl_exist=
for secs in 1 5 10 ; do
does_jcl_exist=$(is_data_set_exists "${jcllib_location}(ZWEIMVS)")
Expand Down
2 changes: 1 addition & 1 deletion bin/commands/init/security/index.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ if [ -z "${does_jcl_exist}" ]; then
fi

# should be created, but may take time to discover.
if [ -z "${does_jcl_exist"} ]; then
if [ -z "${does_jcl_exist}" ]; then
does_jcl_exist=
for secs in 1 5 10 ; do
does_jcl_exist=$(is_data_set_exists "${jcllib}(ZWEI${security_product})")
Expand Down
2 changes: 1 addition & 1 deletion bin/commands/init/stc/index.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if [ -z "${does_jcl_exist}" ]; then
fi

# should be created, but may take time to discover.
if [ -z "${does_jcl_exist"} ]; then
if [ -z "${does_jcl_exist}" ]; then
does_jcl_exist=
for secs in 1 5 10 ; do
does_jcl_exist=$(is_data_set_exists "${jcllib}(ZWEISTC)")
Expand Down
2 changes: 1 addition & 1 deletion bin/commands/init/vsam/index.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ if [ -z "${does_jcl_exist}" ]; then
fi

# should be created, but may take time to discover.
if [ -z "${does_jcl_exist"} ]; then
if [ -z "${does_jcl_exist}" ]; then
does_jcl_exist=
for secs in 1 5 10 ; do
does_jcl_exist=$(is_data_set_exists "${jcllib}(ZWECSVSM)")
Expand Down

0 comments on commit f172bb5

Please sign in to comment.