Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
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
abdullh.alsoleman
Front-End
Commits
8ec2c582
Unverified
Commit
8ec2c582
authored
Aug 30, 2019
by
Christopher Fujino
Committed by
GitHub
Aug 30, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix recursiveCopy to preserve executable bit (#39505)
parent
a2957c57
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
0 deletions
+26
-0
utils.dart
dev/devicelab/lib/framework/utils.dart
+26
-0
No files found.
dev/devicelab/lib/framework/utils.dart
View file @
8ec2c582
...
...
@@ -124,6 +124,11 @@ void recursiveCopy(Directory source, Directory target) {
else
if
(
entity
is
File
)
{
final
File
dest
=
File
(
path
.
join
(
target
.
path
,
name
));
dest
.
writeAsBytesSync
(
entity
.
readAsBytesSync
());
// Preserve executable bit
final
String
modes
=
entity
.
statSync
().
modeString
();
if
(
modes
!=
null
&&
modes
.
contains
(
'x'
))
{
makeExecutable
(
dest
);
}
}
}
}
...
...
@@ -134,6 +139,27 @@ FileSystemEntity move(FileSystemEntity whatToMove,
.
renameSync
(
path
.
join
(
to
.
path
,
name
??
path
.
basename
(
whatToMove
.
path
)));
}
/// Equivalent of `chmod a+x file`
void
makeExecutable
(
File
file
)
{
// Windows files do not have an executable bit
if
(
Platform
.
isWindows
)
{
return
;
}
final
ProcessResult
result
=
_processManager
.
runSync
(<
String
>[
'chmod'
,
'a+x'
,
file
.
path
,
]);
if
(
result
.
exitCode
!=
0
)
{
throw
FileSystemException
(
'Error making
${file.path}
executable.
\n
'
'
${result.stderr}
'
,
file
.
path
,
);
}
}
/// Equivalent of `mkdir directory`.
void
mkdir
(
Directory
directory
)
{
directory
.
createSync
();
...
...
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