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 c89e38e commit a2e0358Copy full SHA for a2e0358
.github/workflows/test_build.yml
@@ -28,8 +28,8 @@ jobs:
28
dirname="$(basename "${path}")"
29
dest="../${dirname}"
30
mkdir -v ${dest}
31
- [ -d "${path}/data" ] || cp -rv "${path}/data" ${dest}/
32
- [ -d "${path}/imgs" ] || cp -rv "${path}/imgs" ${dest}/
+ [ ! -d "${path}/data" ] || cp -rv "${path}/data" ${dest}/
+ [ ! -d "${path}/imgs" ] || cp -rv "${path}/imgs" ${dest}/
33
cp -v tutorial.css ${dest}
34
for fil in $dirname/*.md; do
35
echo $fil
0 commit comments