Explorar el Código

Update build target for git hooks.

Fernando Perez hace 8 años
padre
commit
25d7f08550
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. 1 1
      git-hooks/post-checkout
  2. 1 1
      git-hooks/post-merge

+ 1 - 1
git-hooks/post-checkout

@@ -1,4 +1,4 @@
 #!/bin/bash
 
 echo "rebuilding extension"
-(npm install && npm run build:all) || echo "fail to rebuild javascript"
+(npm install && npm run build) || echo "fail to rebuild javascript"

+ 1 - 1
git-hooks/post-merge

@@ -1,4 +1,4 @@
 #!/bin/bash
 
 echo "rebuilding extension"
-(npm install && npm run build:all) || echo "fail to rebuild javascript"
+(npm install && npm run build) || echo "fail to rebuild javascript"