我一直在电报网络上进行黑客攻击,这非常棒。
它正在本地运行,gulp watch
但现在我想将它部署到网络上,就像 Igor 在他的 gh-pages 中所做的那样简单:https ://zhukov.github.io/webogram 。
尽管似乎有make
它的脚本(自述文件中没有提到它),但我应该如何做到这一点尚不清楚。我试着做make publish
,但我得到一个错误:
[01:25:27] Finished 'add-appcache-manifest' after 85 ms
echo -n "Please open http://localhost:8000/dist/index.html and check if everything works fine." && read -e
Please open http://localhost:8000/dist/index.html and check if everything works fine./bin/sh: 1: read: Illegal option -e
Makefile:10: recipe for target 'publish' failed
make: *** [publish] Error 2
这是发布部分Makefile
:
publish:
./node_modules/gulp/bin/gulp.js clean
cd dist && git pull origin gh-pages
./node_modules/gulp/bin/gulp.js publish
echo -n "Please open http://localhost:8000/dist/index.html and check if everything works fine." && read -e
cd dist && git add --all . && git commit -am "merged with master" && git push origin gh-pages
我做错了什么,(比如遵循部署静态节点应用程序的一个非常基本的过程)还是有其他错误?