Skip to content

Commit

Permalink
CORTX-30751: Codacy code cleanup (Seagate#1606) (Seagate#2068)
Browse files Browse the repository at this point in the history
This patch fixes some of the codacy warnings.
warning fixed : "Double quote to prevent globing and words splitting".

Signed-off-by: Zoheb Khan <zoheb.khan@seagate.com>
  • Loading branch information
zohebkhann authored and kiwionly2 committed Aug 30, 2022
1 parent 455eac2 commit b87a66a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion motr/st/utils/sns_repair_motr_shutdown.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ main()

NODE_UUID=$(uuidgen)
local multiple_pools=0
motr_service start $multiple_pools $stride $N $K $S $P || {
motr_service start $multiple_pools "$stride" "$N" "$K" "$S" "$P" || {
echo "Failed to start Motr Service."
return 1
}
Expand Down
2 changes: 1 addition & 1 deletion motr/st/utils/spiel_sns_motr_repair.sh
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ main()

NODE_UUID=$(uuidgen)
local multiple_pools=0
motr_service start $multiple_pools $stride $N $K $S $P || {
motr_service start $multiple_pools "$stride" "$N" "$K" "$S" "$P" || {
echo "Failed to start Motr Service."
return 1
}
Expand Down
2 changes: 1 addition & 1 deletion motr/st/utils/spiel_sns_motr_repair_quiesce.sh
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ main()

NODE_UUID=$(uuidgen)
local multiple_pools=0
motr_service start $multiple_pools $stride $N $K $S $P || {
motr_service start $multiple_pools "$stride" "$N" "$K" "$S" "$P" || {
echo "Failed to start Motr Service."
return 1
}
Expand Down

0 comments on commit b87a66a

Please sign in to comment.