Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LakeDropsDrupalDev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Docker
LakeDropsDrupalDev
Commits
d509c308
Commit
d509c308
authored
6 years ago
by
jurgenhaas
Browse files
Options
Downloads
Patches
Plain Diff
#14
Remove spaces in case constructs
parent
411c3902
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
l3d
+9
-9
9 additions, 9 deletions
l3d
with
9 additions
and
9 deletions
l3d
+
9
−
9
View file @
d509c308
...
...
@@ -73,11 +73,11 @@ function getConfig {
while
true
;
do
read
-p
"Which PHP version is your project using? "
PHP_VERSION
case
${
PHP_VERSION
}
in
7.0
)
break
;;
7.1
)
break
;;
7.2
)
break
;;
7.0
)
break
;;
7.1
)
break
;;
7.2
)
break
;;
*
)
echo
"Version not supported."
;;
*
)
echo
"Version not supported."
;;
esac
done
echo
"PHP_VERSION=
${
PHP_VERSION
}
"
>>
.env
...
...
@@ -125,24 +125,24 @@ if [[ "$VERSION" == "{{ version }}" ]]; then
fi
case
$1
in
help
)
help
)
showHelp
;;
version
)
version
)
showVersion
;;
selfupdate
)
selfupdate
)
selfUpdate
;;
update
)
update
)
updateImage
startContainer
;;
*
)
*
)
if
[[
-n
"
$1
"
]]
;
then
ID
=
$(
docker container
ls
-q
-f
name
=
$1_l3d
)
if
[[
-n
"
${
ID
}
"
]]
;
then
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment