We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e390e8f commit 3e1c0a2Copy full SHA for 3e1c0a2
.github/workflows/automaticRelease.yaml
@@ -136,9 +136,10 @@ jobs:
136
cargo build --target x86_64-unknown-linux-gnu --release
137
- name: Setup Example dir
138
run: |
139
- # don't know why it is "liblib...". For consistancy with other versions, it is renamed.
+ # don't know why it is "liblib...". For consistency with other versions, it is renamed.
140
cp target/x86_64-unknown-linux-gnu/release/liblibmathcat_py.so Example/libmathcat_py.so
141
- cp -r addon/globalPlugins/MathCAT/Rules Example
+ # I've started getting errors files already existing, so "-Force" is used
142
+ cp -Recurse -Force addon/globalPlugins/MathCAT/Rules Example
143
- name: test build
144
145
cd Example
0 commit comments