소스 검색

Recompile step added to release script.

Herbert Vojčík 7 년 전
부모
커밋
46bb4dfe06
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      internal/release-worker.sh

+ 2 - 0
internal/release-worker.sh

@@ -20,6 +20,8 @@ if [ "$VER" = "0" ]; then :; else
 	git tag -a "$VER" -m "Release version $VER"
 # bower does not publish explicitly but implictly via semver tag
 	echo npm publish
+	grunt
+	git commit -a -m "Recompile (while version set to $VER)"
 fi
 echo -n "Which version are you going to work on? "
 VERF=`head -n 1`