You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like doing I/O inside the Contents/ of a catalyst .app will sometimes make open -W that.app fail
with:
The application cannot be opened for an unexpected reason, error=Error Domain=NSOSStatusErrorDomain Code=-10827 "kLSNoExecutableErr: The executable is missing" UserInfo={_LSLine=3691, _LSFunction=_LSOpenStuffCallLocal}
in my case I was doing cp -R, but dotnet xharness (or dotnet helix, I'm not sure) is doing chmod +x. In either case, I think sticking in a sync before the open -W is a good idea.
The text was updated successfully, but these errors were encountered:
Without this, launching the app fails (observed on arm64 locally, but
also on x64 on dotnet/runtime CI) with
```
The application cannot be opened for an unexpected reason, error=Error Domain=NSOSStatusErrorDomain Code=-10827 "kLSNoExecutableErr: The executable is missing" UserInfo={_LSLine=3691, _LSFunction=_LSOpenStuffCallLocal}
```
Fixesdotnet#611
Without this, launching the app fails (observed on arm64 locally, but
also on x64 on dotnet/runtime CI) with
```
The application cannot be opened for an unexpected reason, error=Error Domain=NSOSStatusErrorDomain Code=-10827 "kLSNoExecutableErr: The executable is missing" UserInfo={_LSLine=3691, _LSFunction=_LSOpenStuffCallLocal}
```
Fixes#611
It seems like doing I/O inside the
Contents/
of a catalyst .app will sometimes makeopen -W that.app
failwith:
Investigated here: dotnet/runtime#53197 (comment)
in my case I was doing
cp -R
, but dotnet xharness (or dotnet helix, I'm not sure) is doingchmod +x
. In either case, I think sticking in async
before theopen -W
is a good idea.The text was updated successfully, but these errors were encountered: