Skip to content

Commit b375b15

Browse files
committed
feat: remove githooks in flavor to rusty-hook
1 parent 07802b6 commit b375b15

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

.githooks/pre-push.sh

-5
This file was deleted.

build.rs

-5
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,6 @@ use std::{
99
fn main() {
1010
println!("cargo:rerun-if-changed=extras");
1111

12-
// install pre-push hook
13-
if !Path::new(".git/hooks/pre-push").exists() {
14-
fs::hard_link(".githooks/pre-push.sh", ".git/hooks/pre-push").unwrap();
15-
}
16-
1712
let folders = fs::read_dir("extras").unwrap();
1813
if let Err(e) = fs::create_dir("src/extras") {
1914
if e.kind() != std::io::ErrorKind::AlreadyExists {

0 commit comments

Comments
 (0)