소스 검색

Implement a post commit to deploy web content locally

DricomDragon 5 년 전
부모
커밋
6315af101d
1개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  1. 13 0
      ci/githooks/post-commit

+ 13 - 0
ci/githooks/post-commit

@@ -0,0 +1,13 @@
+#!/usr/bin/fish
+
+function ech --description 'Echo with prefix'
+	echo '[post-commit]' $argv
+end
+
+eval ci/install-web-files.fish
+
+if test $status -ne 0
+	ech 'Problem while running installation.'
+else
+	ech 'Web content correctly deployed.'
+end