Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
Breeze
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DeStream-public
Breeze
Commits
d1684095
Commit
d1684095
authored
Dec 08, 2017
by
Jeremy Bokobza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
replace the spaces in the name with a dot as CI system have trouble handling spaces in names.
parent
1d97f425
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
0 deletions
+9
-0
build-win-x64-package.ps1
Scripts/build-win-x64-package.ps1
+2
-0
build-win-x86-package.ps1
Scripts/build-win-x86-package.ps1
+2
-0
appveyor.yml
appveyor.yml
+2
-0
build.sh
build.sh
+3
-0
No files found.
Scripts/build-win-x64-package.ps1
View file @
d1684095
...
...
@@ -62,6 +62,8 @@ Write-Host "[$env:configuration][$env:win_runtime] FINISHED Breeze packaging" -f
dir
cd
app-builds
# replace the spaces in the name with a dot as CI system have trouble handling spaces in names.
Dir
*
.exe |
rename-item
-newname
{
$_
.name -replace
" "
,
"."
}
dir
Write-Host
"[
$env
:configuration][
$env
:win_runtime] Done! Your installer is:"
-foregroundcolor
"green"
Get-ChildItem
-Path
"*.exe"
|
foreach
-object
{
$_
.Fullname
}
...
...
Scripts/build-win-x86-package.ps1
View file @
d1684095
...
...
@@ -62,6 +62,8 @@ Write-Host "[$env:configuration][$env:win_runtime] FINISHED Breeze packaging" -f
dir
cd
app-builds
# replace the spaces in the name with a dot as CI system have trouble handling spaces in names.
Dir
*
.exe |
rename-item
-newname
{
$_
.name -replace
" "
,
"."
}
dir
Write-Host
"[
$env
:configuration][
$env
:win_runtime] Done! Your installer is:"
-foregroundcolor
"green"
Get-ChildItem
-Path
"*.exe"
|
foreach
-object
{
$_
.Fullname
}
...
...
appveyor.yml
View file @
d1684095
...
...
@@ -105,6 +105,8 @@ build_script:
dir
cd app-builds
# replace the spaces in the name with a dot as CI system have trouble handling spaces in names.
Dir *.exe | rename-item -newname { $_.name -replace " ","." }
dir
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
...
...
build.sh
View file @
d1684095
...
...
@@ -78,6 +78,9 @@ ls
echo
$log_prefix
contents of the app-builds folder
cd
$TRAVIS_BUILD_DIR
/Breeze.UI/app-builds/
# replace the spaces in the name with a dot as CI system have trouble handling spaces in names.
for
file
in
*
.
{
dmg,tar.gz,deb
}
;
do
mv
"
$file
"
`
echo
$file
|
tr
' '
'.'
`
2>/dev/null
||
:
;
done
ls
echo
$log_prefix
FINISHED build
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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