We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77bdb03 commit 48e9cb5Copy full SHA for 48e9cb5
bb.edn
@@ -1,4 +1,4 @@
1
-{:version "0.1"
+{:version "0.2"
2
:description "Utilitaires pour code.gouv.fr"
3
:url "https://git.sr.ht/~codegouvfr/codegouvfr-outils"
4
:license {:name "Eclipse Public License - v 2.0"
src/export-comptes-organismes-publics.clj
@@ -1,6 +1,12 @@
#!/usr/bin/env bb
-;; Set the spec file name
+;; Set the file name where to write the exported file
+(def dest-file-name "comptes-organismes-publics.yml")
5
+
6
+;; Remove any previous version
7
+(shell/sh "rm" "-f" dest-file-name)
8
9
+;; Set the main yml source file
10
(def spec-filename "https://git.sr.ht/~codegouvfr/codegouvfr-outils/blob/main/data/comptes-organismes-publics.yml")
11
12
;; Get all forges by domain names
0 commit comments