post-commit 241 B

12345678910111213
  1. #!/usr/bin/fish
  2. function ech --description 'Echo with prefix'
  3. echo '[post-commit]' $argv
  4. end
  5. eval ci/install-web-files.fish
  6. if test $status -ne 0
  7. ech 'Problem while running installation.'
  8. else
  9. ech 'Web content correctly deployed.'
  10. end