Adds Go built binaries to .gitignore

This commit is contained in:
Thomas Buckley-Houston 2018-01-24 16:35:57 +08:00
parent 221aa56869
commit 6f0a732145
2 changed files with 4 additions and 1 deletions

2
.gitignore vendored
View File

@ -4,6 +4,8 @@ build/
node_modules
interfacer/target
interfacer/vendor
interfacer/interfacer
interfacer/browsh
interfacer/webextension.go
webext/node_modules
webext/dist

View File

@ -152,7 +152,8 @@ class Helper {
this.firefoxPTY.write(`cd ${dir} \r`);
let command = `../node_modules/.bin/web-ext run ` +
`--firefox="${this.project_root}/webext/contrib/firefoxheadless.sh" ` +
`--url https://google.com` +
`--verbose ` +
`--url https://google.com ` +
`\r`;
this.firefoxPTY.write(command);
this.firefoxPTY.on('data', (data) => {