diff options
author | 2023-08-24 19:05:40 -0700 | |
---|---|---|
committer | 2023-08-24 19:05:40 -0700 | |
commit | 097ae4e982a9cbcae6b4886c4efb82d452629b99 (patch) | |
tree | 6c274c82a951dc76a566f055985ea890cd92a3bd /src/options.zig | |
parent | 213f5bef9d58ce90add3a83f5476f61f361ec3ef (diff) | |
download | bun-097ae4e982a9cbcae6b4886c4efb82d452629b99.tar.gz bun-097ae4e982a9cbcae6b4886c4efb82d452629b99.tar.zst bun-097ae4e982a9cbcae6b4886c4efb82d452629b99.zip |
fix build
Diffstat (limited to 'src/options.zig')
-rw-r--r-- | src/options.zig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/options.zig b/src/options.zig index fec09405c..8206be31e 100644 --- a/src/options.zig +++ b/src/options.zig @@ -1974,15 +1974,15 @@ pub const OutputFile = struct { }; pub const Value = union(Kind) { + move: FileOperation, + copy: FileOperation, + noop: u0, buffer: struct { allocator: std.mem.Allocator, bytes: []const u8, }, - saved: SavedFile, - move: FileOperation, - copy: FileOperation, - noop: u0, pending: resolver.Result, + saved: SavedFile, }; pub const SavedFile = struct { |