Skip to content

Commit

Permalink
Merge pull request #417 from BaseAdresseNationale/antoineludeau/fix-c…
Browse files Browse the repository at this point in the history
…ompose-command-argument-to-get-only-strings

Fixed legacy compose cli to get only string args
  • Loading branch information
antoineludeau authored Jun 6, 2024
2 parents 82adfb8 + c8a2c81 commit 0780768
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/compose/cli.cjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node
require('dotenv').config()
const argv = require('minimist')(process.argv.slice(2))
const argv = require('minimist')(process.argv.slice(2), {string: '_'})
const mongo = require('../util/mongo.cjs')
const {getAskedComposition} = require('../models/commune.cjs')
const {runInParallel} = require('../util/parallel.cjs')
Expand Down

0 comments on commit 0780768

Please sign in to comment.