sanebox: remove unnecessary quotes in case statement
This commit is contained in:
@@ -419,7 +419,7 @@ parseArgs() {
|
|||||||
while [ "$#" -ne 0 ]; do
|
while [ "$#" -ne 0 ]; do
|
||||||
local arg=$1
|
local arg=$1
|
||||||
shift
|
shift
|
||||||
case "$arg" in
|
case $arg in
|
||||||
(--)
|
(--)
|
||||||
# rest of args are for the CLI, and not for us.
|
# rest of args are for the CLI, and not for us.
|
||||||
# consider two cases:
|
# consider two cases:
|
||||||
@@ -627,7 +627,7 @@ bwrapIngestNet() {
|
|||||||
bwrapUnshareNet=()
|
bwrapUnshareNet=()
|
||||||
}
|
}
|
||||||
bwrapIngestKeepNamespace() {
|
bwrapIngestKeepNamespace() {
|
||||||
case "$1" in
|
case $1 in
|
||||||
(cgroup)
|
(cgroup)
|
||||||
bwrapUnshareCgroup=()
|
bwrapUnshareCgroup=()
|
||||||
;;
|
;;
|
||||||
|
Reference in New Issue
Block a user