bootstrap: Change unwrap()
to expect()
for WIX
path
On Windows, `x.py dist` command panics without proper error message if 'WIX' environment variable is not set. This patch changes `Option::unwrap()` to `Option::expect()`.
This commit is contained in:
parent
b8dc6aa673
commit
b9ae04f088
@ -1564,7 +1564,9 @@ impl Step for Extended {
|
||||
builder.install(&etc.join("gfx/rust-logo.ico"), &exe, 0o644);
|
||||
|
||||
// Generate msi installer
|
||||
let wix = PathBuf::from(env::var_os("WIX").unwrap());
|
||||
let wix_path = env::var_os("WIX")
|
||||
.expect("`WIX` environment variable must be set for generating MSI installer(s).");
|
||||
let wix = PathBuf::from(wix_path);
|
||||
let heat = wix.join("bin/heat.exe");
|
||||
let candle = wix.join("bin/candle.exe");
|
||||
let light = wix.join("bin/light.exe");
|
||||
|
Loading…
x
Reference in New Issue
Block a user