Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
XDG Integration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
JennaHuntsman
XDG Integration
Commits
62879b6e
Commit
62879b6e
authored
1 year ago
by
Nat Goodspeed
Browse files
Options
Downloads
Patches
Plain Diff
SL-19242: Adjust Windows relative path base directory.
parent
fab7b300
No related branches found
Branches containing commit
No related tags found
2 merge requests
!3
Update to main branch
,
!2
Rebase onto current main branch
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/newview/viewer_manifest.py
+13
-2
13 additions, 2 deletions
indra/newview/viewer_manifest.py
with
13 additions
and
2 deletions
indra/newview/viewer_manifest.py
+
13
−
2
View file @
62879b6e
...
...
@@ -499,8 +499,19 @@ def construct(self):
if
self
.
is_packaging_viewer
():
# Find secondlife-bin.exe in the 'configuration' dir, then rename it to the result of final_exe.
self
.
path
(
src
=
'
%s/secondlife-bin.exe
'
%
self
.
args
[
'
configuration
'
],
dst
=
self
.
final_exe
())
# Emit the whole app image as one of the GitHub step outputs.
appbase
=
self
.
relpath
(
self
.
get_dst_prefix
(),
base
=
os
.
getcwd
())
# Emit the whole app image as one of the GitHub step outputs. When
# we feed upload-artifact multiple absolute pathnames, even just
# for exclusion, it ends up creating several extraneous directory
# levels within the artifact -- so try using only relative paths.
# One problem: as of right now, our current directory os.getcwd()
# is not the same as the initial working directory for this job
# step, meaning paths relative to our os.getcwd() won't work for
# the subsequent upload-artifact step. We're a couple directory
# levels down. Try adjusting for those when specifying the base
# for self.relpath().
appbase
=
self
.
relpath
(
self
.
get_dst_prefix
(),
base
=
os
.
path
.
join
(
os
.
getcwd
(),
os
.
pardir
,
os
.
pardir
))
self
.
set_github_output
(
'
viewer_app
'
,
appbase
,
# except for this stuff
*
((
'
!
'
+
os
.
path
.
join
(
appbase
,
pattern
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment