We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a9e5d0 commit 16bcd2dCopy full SHA for 16bcd2d
app/Commands/Install.php
@@ -74,7 +74,6 @@ public function handle(): int
74
$this->info('Verifying hooks are executable...');
75
}
76
exec('chmod +x '.Platform::git_path('hooks').'/*');
77
- exec('chmod +x '.Whisky::base_path('bin/run-hook'));
78
79
80
$this->info('Git hooks installed successfully.');
tests/Feature/RunTest.php
@@ -20,6 +20,5 @@
20
->andReturnTrue();
21
22
$this->artisan('run pre-commit')
23
- ->doesntExpectOutputToContain('run-hook')
24
->assertExitCode(0);
25
})->skip('Needs to be refactored so that the hooks don\'t actually run');
0 commit comments