Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
appimage-installer
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
2
Issues
2
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
azubieta
appimage-installer
Commits
88ee0621
Unverified
Commit
88ee0621
authored
Apr 23, 2019
by
azubieta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move store id to the end of the file name
parent
0d6c9842
Pipeline
#393
failed with stages
in 46 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
InstallCommand.cpp
src/cli/commands/InstallCommand.cpp
+2
-2
No files found.
src/cli/commands/InstallCommand.cpp
View file @
88ee0621
...
...
@@ -44,8 +44,8 @@ void InstallCommand::createApplicationsDir() {
}
QString
InstallCommand
::
buildTargetPath
(
Attica
::
Content
content
)
{
QString
fileName
=
content
.
id
()
+
'-'
+
content
.
name
().
replace
(
" "
,
"_"
)
+
'-'
+
content
.
version
()
+
'-'
+
content
.
updated
().
toString
(
"yyyyMMdd-HH:mm"
);
QString
fileName
=
content
.
name
().
replace
(
" "
,
"_"
)
+
'-'
+
content
.
version
()
+
'-'
+
content
.
updated
().
toString
(
"yyyyMMdd-HH:mm"
)
+
"__"
+
content
.
id
()
;
return
QDir
::
homePath
()
+
"/Applications/"
+
fileName
.
toLower
()
+
".AppImage"
;
}
...
...
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