[gitignore] only ignore snapshot.js at the root (#100840) (#101516)

Co-authored-by: spalger <spalger@users.noreply.github.com>
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Spencer <email@spalger.com>
Co-authored-by: spalger <spalger@users.noreply.github.com>
This commit is contained in:
Kibana Machine 2021-06-07 15:41:09 -04:00 committed by GitHub
parent a900693f03
commit e5ff4e2959
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View file

@ -63,7 +63,7 @@ npm-debug.log*
.vagrant
## @cypress/snapshot from apm plugin
snapshots.js
/snapshots.js
# release notes script output
report.csv

View file

@ -48471,7 +48471,7 @@ async function runBazelCommandWithRunner(bazelCommandRunner, bazelArgs, offline
});
if (offline) {
bazelArgs.push('--config=offline');
bazelArgs = [...bazelArgs, '--config=offline'];
}
const bazelProc = Object(_child_process__WEBPACK_IMPORTED_MODULE_4__["spawn"])(bazelCommandRunner, bazelArgs, bazelOpts);

View file

@ -30,7 +30,7 @@ async function runBazelCommandWithRunner(
};
if (offline) {
bazelArgs.push('--config=offline');
bazelArgs = [...bazelArgs, '--config=offline'];
}
const bazelProc = spawn(bazelCommandRunner, bazelArgs, bazelOpts);