build.sh 570 B

12345678910111213141516171819202122232425
  1. outPath=./output
  2. rm -rf $outPath
  3. mkdir $outPath
  4. go build ../gogs.go
  5. chmod +x gogs
  6. mv gogs $outPath/
  7. cp -r ../conf/ $outPath/conf/
  8. cp -r ../custom/ $outPath/custom/
  9. cp -r dockerfiles/ $outPath/dockerfiles/
  10. cp -r ../public/ $outPath/public/
  11. cp -r ../templates/ $outPath/templates/
  12. cp ../cert.pem $outPath/
  13. cp ../CONTRIBUTING.md $outPath/
  14. cp gogs_supervisord.sh $outPath/
  15. cp ../key.pem $outPath/
  16. cp ../LICENSE $outPath/
  17. cp ../README.md $outPath/
  18. cp ../README_ZH.md $outPath/
  19. cp start.bat $outPath/
  20. cp start.sh $outPath/
  21. cp ../wercker.yml $outPath/
  22. cp mysql.sql $outPath/