Skip to content
This repository was archived by the owner on May 15, 2019. It is now read-only.

Commit 3e5dd46

Browse files
committed
fixes #105
1 parent f1f220e commit 3e5dd46

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/emulator

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if (!semver.satisfies(process.version, '>= 6.9.1')) {
2222
process.exit(1);
2323
}
2424

25-
if (semver.satisfies(process.version, '> 6.9.1')) {
25+
if (semver.satisfies(process.version, '>= 7.0.0')) {
2626
console.log(`Warning: You're using Node.js ${process.version} but Google Cloud Functions only supports v6.9.1.`);
2727
}
2828

bin/functions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if (!semver.satisfies(process.version, '>= 6.9.1')) {
2626
process.exit(1);
2727
}
2828

29-
if (semver.satisfies(process.version, '> 6.9.1')) {
29+
if (semver.satisfies(process.version, '>= 7.0.0')) {
3030
console.log(`Warning: You're using Node.js ${process.version} but Google Cloud Functions only supports v6.9.1.`);
3131
}
3232

0 commit comments

Comments
 (0)