mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-03-15 23:22:53 +08:00
Use newer syntax for autorelease pool
This commit is contained in:
parent
466806fb11
commit
9fd6b5e1e2
@ -84,14 +84,15 @@ static void launch_fish_with_applescript(NSString *fish_binary_path)
|
||||
|
||||
/* This approach asks Terminal to open a script that we control */
|
||||
int main(void) {
|
||||
[[NSAutoreleasePool alloc] init];
|
||||
|
||||
/* Get the fish executable. Make sure it's absolute. */
|
||||
NSURL *fish_executable = [[NSBundle mainBundle] URLForResource:@"fish" withExtension:@"" subdirectory:@"base/bin"];
|
||||
if (! fish_executable)
|
||||
die("Could not find fish executable in bundle");
|
||||
@autoreleasepool {
|
||||
/* Get the fish executable. Make sure it's absolute. */
|
||||
NSURL *fish_executable = [[NSBundle mainBundle] URLForResource:@"fish" withExtension:@"" subdirectory:@"base/bin"];
|
||||
if (! fish_executable)
|
||||
die("Could not find fish executable in bundle");
|
||||
|
||||
launch_fish_with_applescript([fish_executable path]);
|
||||
launch_fish_with_applescript([fish_executable path]);
|
||||
}
|
||||
|
||||
/* If we succeeded, it will clean itself up */
|
||||
return 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user