Skip to content

Commit 2d40a9b

Browse files
committed
apparently -f is ambigious in github's version -- using suggested (and not standard) -Force
1 parent 4dab645 commit 2d40a9b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/automaticRelease.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
- name: Setup Example dir
6868
run: |
6969
cp target/i686-pc-windows-msvc/release/libmathcat_py.dll Example/libmathcat_py.pyd
70-
mv -f addon/globalPlugins/MathCAT/Rules Example
70+
mv --Force addon/globalPlugins/MathCAT/Rules Example
7171
- name: test the build
7272
run: |
7373
cd Example
@@ -104,7 +104,7 @@ jobs:
104104
- name: Setup Example dir
105105
run: |
106106
cp target/x86_64-pc-windows-msvc/release/libmathcat_py.dll Example/libmathcat_py.pyd
107-
mv -f addon/globalPlugins/MathCAT/Rules Example
107+
mv --Force addon/globalPlugins/MathCAT/Rules Example
108108
- name: create zip file for pyd file -- this allows the name to indicate arch, python version, etc., but unzipped it is correctly named
109109
uses: thedoctor0/zip-release@0.7.5
110110
with:
@@ -184,7 +184,7 @@ jobs:
184184
- name: Set up addons dir
185185
run: |
186186
unzip libmathcat_py-32-3.11-win.zip
187-
mv -f libmathcat_py.pyd Rules.zip addon/globalPlugins/MathCAT
187+
mv --Force libmathcat_py.pyd Rules.zip addon/globalPlugins/MathCAT
188188
cd addon/globalPlugins/MathCAT
189189
sed 's/^import wx\.xrc/# import wx.xrc/' --in-place MathCATgui.py # fix wx file
190190
unzip Rules.zip

0 commit comments

Comments
 (0)