Skip to content

Commit

Permalink
use /bin/bash as shell location when installing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
alanhamlett committed Apr 7, 2015
1 parent baf2514 commit 752d439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WakaTime.mm
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ - (void)installCLI {
NSLog(@"Installing wakatime cli...");
NSString *script = [NSHomeDirectory() stringByAppendingPathComponent:WAKATIME_INSTALL_SCRIPT];
NSTask *task = [[NSTask alloc] init];
[task setLaunchPath: @"/usr/local/bin/bash"];
[task setLaunchPath: @"/bin/bash"];
NSMutableArray *arguments = [NSMutableArray array];
[arguments addObject:script];
[task setArguments: arguments];
Expand Down

0 comments on commit 752d439

Please sign in to comment.