Próbuję uruchomić skrypt z NSTask z następującego kodu:Running skrypt z NSTask powoduje błąd posix_spawn
NSTask *task = [[NSTask alloc] init];
[task setLaunchPath:@"/Users/username/connect.sh"];
[task launch];
Ale pojawia An uncaught exception was raised
i Couldn't posix_spawn: error 8
Gdybym tylko uruchomić skrypt w terminalu wszystko działa.
Oto co skrypt zawiera:
if [ ! -d ~/Remote/username/projects ]
then
sshfs -C -p 22 [email protected]:/home/username ~/Remote/username
fi