We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07802b6 commit b375b15Copy full SHA for b375b15
.githooks/pre-push.sh
build.rs
@@ -9,11 +9,6 @@ use std::{
9
fn main() {
10
println!("cargo:rerun-if-changed=extras");
11
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
-
17
let folders = fs::read_dir("extras").unwrap();
18
if let Err(e) = fs::create_dir("src/extras") {
19
if e.kind() != std::io::ErrorKind::AlreadyExists {
0 commit comments