Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
evm-store
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
wanli
evm-store
Commits
98adc879
Commit
98adc879
authored
Mar 13, 2021
by
wanli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
e3765ee1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
backend/controller/build_logs_manager.py
backend/controller/build_logs_manager.py
+2
-2
frontend/vue.config.js
frontend/vue.config.js
+1
-1
No files found.
backend/controller/build_logs_manager.py
View file @
98adc879
...
@@ -57,8 +57,8 @@ class BuildLogsManager(object):
...
@@ -57,8 +57,8 @@ class BuildLogsManager(object):
app_files
=
[]
app_files
=
[]
for
sf
in
source_files
:
for
sf
in
source_files
:
parsed_result
=
urlparse
(
sf
.
path
)
parsed_result
=
urlparse
(
sf
.
path
)
target_file
=
os
.
sep
.
join
([
config
.
get
(
"UPLOAD_PATH"
),
parsed_result
.
path
.
replace
(
'
/'
,
'
\\
'
)])
target_file
=
os
.
sep
.
join
([
config
.
get
(
"UPLOAD_PATH"
),
parsed_result
.
path
.
replace
(
'
\\
'
,
'/
'
)])
shutil
.
move
(
target_file
,
dest_dir
)
shutil
.
move
(
os
.
path
.
normpath
(
target_file
),
os
.
path
.
normpath
(
dest_dir
)
)
app_files
.
append
([
sf
.
id
,
os
.
sep
.
join
([
dest_dir
,
os
.
path
.
basename
(
parsed_result
.
path
)])])
app_files
.
append
([
sf
.
id
,
os
.
sep
.
join
([
dest_dir
,
os
.
path
.
basename
(
parsed_result
.
path
)])])
# if os.path.exists(target_file):
# if os.path.exists(target_file):
# shutil.move(target_file, dest_dir)
# shutil.move(target_file, dest_dir)
...
...
frontend/vue.config.js
View file @
98adc879
...
@@ -14,7 +14,7 @@ module.exports = {
...
@@ -14,7 +14,7 @@ module.exports = {
* In most cases please use '/' !!!
* In most cases please use '/' !!!
* Detail: https://cli.vuejs.org/config/#publicpath
* Detail: https://cli.vuejs.org/config/#publicpath
*/
*/
publicPath
:
"
/
static
"
,
publicPath
:
"
/
"
,
outputDir
:
"
dist
"
,
outputDir
:
"
dist
"
,
productionSourceMap
:
false
,
productionSourceMap
:
false
,
css
:
{
css
:
{
...
...
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