Skip to content

Commit f8c0a95

Browse files
authored
ci: extract dev/tests dir creation script
1 parent 4b15ed9 commit f8c0a95

1 file changed

Lines changed: 36 additions & 0 deletions

File tree

docker/scripts/app-create-dirs.sh

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
#!/bin/bash
2+
3+
for sub in \
4+
test/id \
5+
test/staging \
6+
test/archive \
7+
test/rfc \
8+
test/media \
9+
test/wiki/ietf \
10+
data/nomcom_keys/public_keys \
11+
data/developers/ietf-ftp \
12+
data/developers/ietf-ftp/bofreq \
13+
data/developers/ietf-ftp/charter \
14+
data/developers/ietf-ftp/conflict-reviews \
15+
data/developers/ietf-ftp/internet-drafts \
16+
data/developers/ietf-ftp/rfc \
17+
data/developers/ietf-ftp/status-changes \
18+
data/developers/ietf-ftp/yang/catalogmod \
19+
data/developers/ietf-ftp/yang/draftmod \
20+
data/developers/ietf-ftp/yang/ianamod \
21+
data/developers/ietf-ftp/yang/invalmod \
22+
data/developers/ietf-ftp/yang/rfcmod \
23+
data/developers/www6s \
24+
data/developers/www6s/staging \
25+
data/developers/www6s/wg-descriptions \
26+
data/developers/www6s/proceedings \
27+
data/developers/www6/ \
28+
data/developers/www6/iesg \
29+
data/developers/www6/iesg/evaluation \
30+
data/developers/media/photo \
31+
; do
32+
if [ ! -d "$sub" ]; then
33+
echo "Creating dir $sub"
34+
mkdir -p "$dir";
35+
fi
36+
done

0 commit comments

Comments
 (0)