Skip to content

Commit bb3cad8

Browse files
committed
xo: Fix unicorn/prefer-string-raw.
Signed-off-by: Anders Kaseorg <[email protected]>
1 parent e3d9308 commit bb3cad8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

app/common/enterprise-util.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ reloadDatabase();
2626
function reloadDatabase(): void {
2727
let enterpriseFile = "/etc/zulip-desktop-config/global_config.json";
2828
if (process.platform === "win32") {
29-
enterpriseFile =
30-
"C:\\Program Files\\Zulip-Desktop-Config\\global_config.json";
29+
enterpriseFile = String.raw`C:\Program Files\Zulip-Desktop-Config\global_config.json`;
3130
}
3231

3332
enterpriseFile = path.resolve(enterpriseFile);

0 commit comments

Comments
 (0)