Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
a51d6a96
Commit
a51d6a96
authored
Sep 29, 2022
by
Till Brehm
Browse files
Set file permissions in the tar command of the ISPConfig release build script.
parent
8b52d3db
Pipeline
#12272
passed with stage
in 7 minutes and 5 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
a51d6a96
...
...
@@ -90,7 +90,7 @@ build:package:
-
if [[ "$VER" == "" ]] ; then VER="3.2dev"$(date +%s) ; fi
-
if [[ "$VER" != "" ]] ; then echo "Replacing 3.2dev by $VER" ; sed -i -r 's/3\.2dev/'${VER}'/g' install/tpl/config.inc.php.master install/sql/ispconfig3.sql ; fi
-
RET=0
-
tar -cpzf ISPConfig-${VER}.tar.gz --exclude "ISPConfig-${VER}.tar.gz" --exclude ".git*" --exclude ".phplint.yml" --transform 's,^\./,ispconfig3_install/,'
.
|| RET=$?
-
tar -cpzf ISPConfig-${VER}.tar.gz --exclude "ISPConfig-${VER}.tar.gz" --exclude ".git*" --exclude ".phplint.yml" --transform 's,^\./,ispconfig3_install/,'
--mode='0775' ./*
|| RET=$?
-
if [[ $RET > 1 ]] ; then exit $RET ; fi
-
echo "Listing tar contents for verification"
-
tar -tvf ISPConfig-${VER}.tar.gz
...
...
@@ -101,4 +101,4 @@ build:package:
-
echo "Download url is https://download.ispconfig.org/ISPConfig-${VER}.tar.gz"
needs
:
[
"
syntax:lint"
]
allow_failure
:
false
\ No newline at end of file
allow_failure
:
false
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