File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ pub fn current_platform() -> String {
51
51
pub fn all_platforms ( ) -> Vec < & ' static str > {
52
52
vec ! (
53
53
"x86_64-Linux" ,
54
- "x86_64-Darwin" ,
54
+ // "x86_64-Darwin", TODO: https://github.com/timbertson/runix/issues/9
55
55
"arm64-Darwin" ,
56
56
)
57
57
}
Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ fn crossplatform_file_types() -> Result<()> {
247
247
if line. trim ( ) . is_empty ( ) {
248
248
continue
249
249
}
250
- if line. contains ( "ASCII text" ) {
250
+ if line. contains ( "ASCII text" ) || line . contains ( "script" ) {
251
251
continue
252
252
} else {
253
253
match platform. split_once ( '-' ) . unwrap ( ) {
Original file line number Diff line number Diff line change 19
19
libiconv # native libs
20
20
curl
21
21
git
22
+ findutils
22
23
] ++
23
24
lib . optionals stdenv . isDarwin ( with darwin . apple_sdk ; [
24
25
frameworks . Security
You can’t perform that action at this time.
0 commit comments