File: clone-repos.sh

package info (click to toggle)
node-unicode-data 0~20220914%2Bgitb601441-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 89,996 kB
  • sloc: javascript: 1,716; makefile: 27; sh: 23
file content (12 lines) | stat: -rwxr-xr-x 229 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash

cd "$(dirname "${BASH_SOURCE}")";

VERSIONS=$(node scripts/log-versions.js);

mkdir -p output;
cd output;

for version in $VERSIONS; do
  git clone "git@github.com:node-unicode/unicode-${version}.git";
done;