Commit 32ef0d8d authored by Carla Goncalves Ourofino's avatar Carla Goncalves Ourofino
Browse files

Indentação.

[SOMA-3827][SOMA-4070]
Showing with 11 additions and 11 deletions
+11 -11
......@@ -17,17 +17,17 @@ runtimesandboxdir="${sgadruntimedir}/sandbox"
POSITIONAL="" # String para salvar argumentos passados ao comando
while [ $# -gt 0 ] # Percorre todos argumentos
do
case "$1" in
--sga-name)
sga_name=$2
shift
shift
;;
*)
POSITIONAL="${POSITIONAL} $1"
shift
;;
esac
case "$1" in
--sga-name)
sga_name=$2
shift
shift
;;
*)
POSITIONAL="${POSITIONAL} $1"
shift
;;
esac
done
set -- "${POSITIONAL}" # Reseta a posição do $N que foi shiftada
config_file=$1 # Como shiftamos todos os argumentos para a direita, nosso $1 sempre vai ser o argumento config_file, se ele existir
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment