]> Cypherpunks.ru repositories - govpn.git/blobdiff - utils/makedist.sh
Use YAML instead of JSON for server configuration file
[govpn.git] / utils / makedist.sh
index cf819eceafe3460110d516368b93c90f357a9a5c..3c5ce99b78416e1b2d3764212c229a56dd024a7f 100755 (executable)
@@ -8,7 +8,15 @@ release=$1
 [ -n "$release" ]
 
 git clone . $tmp/govpn-$release
-for repo in src/github.com/bigeagle/water src/github.com/agl/ed25519 src/github.com/magical/argon2 src/github.com/dchest/blake2b src/golang.org/x/crypto; do
+repos="
+    src/github.com/bigeagle/water
+    src/github.com/agl/ed25519
+    src/github.com/magical/argon2
+    src/github.com/dchest/blake2b
+    src/golang.org/x/crypto
+    src/github.com/go-yaml/yaml
+"
+for repo in $repos; do
     git clone $repo $tmp/govpn-$release/$repo
 done
 cd $tmp/govpn-$release