Skip to content

Commit

Permalink
Returning --slpk for backward compatibility (#3138)
Browse files Browse the repository at this point in the history
  • Loading branch information
dariaterekhova-actionengine authored Oct 18, 2024
1 parent 7c3a294 commit c7e3b0d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions modules/tile-converter/src/converter-cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,10 @@ function parseOptions(args: string[]): TileConversionOptions {
case '--help':
printHelp();
break;
// we need this option for backward compatibility
// do nothing but don't throw the error
case '--slpk':
break;
default:
console.warn(`Unknown option ${arg}`);
process.exit(0); // eslint-disable-line
Expand Down

0 comments on commit c7e3b0d

Please sign in to comment.