aboutsummaryrefslogtreecommitdiff
path: root/src/bundler.zig
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/bundler.zig6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bundler.zig b/src/bundler.zig
index 66443d165..76fbc02ee 100644
--- a/src/bundler.zig
+++ b/src/bundler.zig
@@ -472,11 +472,11 @@ pub const Bundler = struct {
}
if (!has_production_env and this.options.isTest()) {
- try this.env.load(&this.fs.fs, dir, .@"test");
+ try this.env.load(dir, .@"test");
} else if (this.options.production) {
- try this.env.load(&this.fs.fs, dir, .production);
+ try this.env.load(dir, .production);
} else {
- try this.env.load(&this.fs.fs, dir, .development);
+ try this.env.load(dir, .development);
}
},
.disable => {