@@ -6,28 +6,25 @@ use fs_err::File;
66use thiserror:: Error ;
77
88#[ cfg( all( windows, target_arch = "x86" ) ) ]
9- const LAUNCHER_I686_GUI : & [ u8 ] =
10- include_bytes ! ( "../../uv-trampoline/trampolines/uv-trampoline-i686-gui.exe" ) ;
9+ const LAUNCHER_I686_GUI : & [ u8 ] = include_bytes ! ( "../trampolines/uv-trampoline-i686-gui.exe" ) ;
1110
1211#[ cfg( all( windows, target_arch = "x86" ) ) ]
1312const LAUNCHER_I686_CONSOLE : & [ u8 ] =
14- include_bytes ! ( "../../uv-trampoline/ trampolines/uv-trampoline-i686-console.exe" ) ;
13+ include_bytes ! ( "../trampolines/uv-trampoline-i686-console.exe" ) ;
1514
1615#[ cfg( all( windows, target_arch = "x86_64" ) ) ]
17- const LAUNCHER_X86_64_GUI : & [ u8 ] =
18- include_bytes ! ( "../../uv-trampoline/trampolines/uv-trampoline-x86_64-gui.exe" ) ;
16+ const LAUNCHER_X86_64_GUI : & [ u8 ] = include_bytes ! ( "../trampolines/uv-trampoline-x86_64-gui.exe" ) ;
1917
2018#[ cfg( all( windows, target_arch = "x86_64" ) ) ]
2119const LAUNCHER_X86_64_CONSOLE : & [ u8 ] =
22- include_bytes ! ( "../../uv-trampoline/ trampolines/uv-trampoline-x86_64-console.exe" ) ;
20+ include_bytes ! ( "../trampolines/uv-trampoline-x86_64-console.exe" ) ;
2321
2422#[ cfg( all( windows, target_arch = "aarch64" ) ) ]
25- const LAUNCHER_AARCH64_GUI : & [ u8 ] =
26- include_bytes ! ( "../../uv-trampoline/trampolines/uv-trampoline-aarch64-gui.exe" ) ;
23+ const LAUNCHER_AARCH64_GUI : & [ u8 ] = include_bytes ! ( "../trampolines/uv-trampoline-aarch64-gui.exe" ) ;
2724
2825#[ cfg( all( windows, target_arch = "aarch64" ) ) ]
2926const LAUNCHER_AARCH64_CONSOLE : & [ u8 ] =
30- include_bytes ! ( "../../uv-trampoline/ trampolines/uv-trampoline-aarch64-console.exe" ) ;
27+ include_bytes ! ( "../trampolines/uv-trampoline-aarch64-console.exe" ) ;
3128
3229// https://learn.microsoft.com/en-us/windows/win32/menurc/resource-types
3330#[ cfg( windows) ]
0 commit comments