Skip OS check if depotid is specified directly

Fixes #48
pull/49/head
Pavel Djundik 6 years ago committed by GitHub
parent 2177746a50
commit 0b88f9361e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -140,6 +140,12 @@ namespace DepotDownloader
Console.WriteLine( "Error: -manifest requires -depot to be specified" );
return;
}
if ( depotId != ContentDownloader.INVALID_DEPOT_ID && !ContentDownloader.Config.DownloadAllPlatform )
{
Console.WriteLine( "DepotID specified, platform check will be skipped." );
ContentDownloader.Config.DownloadAllPlatforms = true;
}
}
if ( InitializeSteam( username, password ) )

Loading…
Cancel
Save