Skip to content

Commit f368452

Browse files
committed
Update Xbox platform to reference xbox_games.ps1 instead of game_pass_games.ps1
1 parent 65a9634 commit f368452

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/platforms/xbox/platform.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ impl GamesPlatform for XboxPlatForm {
3333
}
3434

3535
fn get_shortcut_info(&self) -> eyre::Result<Vec<crate::platforms::ShortcutToImport>> {
36-
let command = include_str!("./game_pass_games.ps1");
36+
let command = include_str!("./xbox_games.ps1");
3737
let res = run_powershell_command(command)?;
3838
let apps: Vec<AppInfo> = serde_json::from_str(&res)?;
3939
let windows_dir = std::env::var("WinDir").unwrap_or("C:\\Windows".to_string());

0 commit comments

Comments
 (0)