File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -45,10 +45,10 @@ jobs:
45
45
- name : Install Graphviz
46
46
run : |
47
47
if [ "${{ steps.cache-graphviz.outputs.cache-hit }}" = "true" ]; then
48
- sudo cp ~/graphviz-cache/bin/* /usr/bin/ 2>/dev/null
49
- sudo cp ~/graphviz-cache/lib/* /usr/lib/x86_64-linux-gnu/ 2>/dev/null
50
- sudo cp -r ~/graphviz-cache/share/graphviz /usr/share/ 2>/dev/null
51
- sudo cp -r ~/graphviz-cache/lib/graphviz /usr/lib/x86_64-linux-gnu/ 2>/dev/null
48
+ sudo cp ~/graphviz-cache/bin/* /usr/bin/ 2>/dev/null || true
49
+ sudo cp ~/graphviz-cache/lib/* /usr/lib/x86_64-linux-gnu/ 2>/dev/null || true
50
+ sudo cp -r ~/graphviz-cache/share/graphviz /usr/share/ 2>/dev/null || true
51
+ sudo cp -r ~/graphviz-cache/lib/graphviz /usr/lib/x86_64-linux-gnu/ 2>/dev/null || true
52
52
sudo ldconfig
53
53
sudo dot -c
54
54
else
You can’t perform that action at this time.
0 commit comments