Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Eric Duminil
casanova-online
Commits
db64f93e
Commit
db64f93e
authored
May 17, 2026
by
Eric Duminil
Browse files
Check large enough
parent
6b24efa5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
db64f93e
...
...
@@ -11,6 +11,8 @@ INSTALLER_URL = https://web.archive.org/web/20070611110850fw_/http://nesa1.uni-s
download_setup_exe
:
##
Downloads installer if missing
@
[
-f
CASAnova_Setup.exe
]
||
{
echo
"
${green}
Downloading CASAnova_Setup.exe...
${no_color}
"
;
wget
"
$(INSTALLER_URL)
"
-O
CASAnova_Setup.exe
;
}
@
[
-f
CASAnova_Setup.exe
]
&&
[
$$
(
stat
-c
%s CASAnova_Setup.exe
)
-gt
1000000
]
\
||
{
echo
"
${red}
CASAnova_Setup.exe missing or too small (download failed?)
${no_color}
"
;
exit
1
;
}
build
:
download_setup_exe
##
Build the Docker image (downloads installer if missing).
@
echo
"
${green}
Building image...
${no_color}
"
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment