replaced workflow forward slash with grave accent

This commit is contained in:
k4yt3x 2020-05-12 02:29:44 -04:00
parent 9643c96ed7
commit 8368cb1f49

View File

@ -21,24 +21,24 @@ jobs:
pip install -r src/requirements.txt
- name: Build Video2X CLI
run: |
pyinstaller --noconfirm --log-level=WARN \
--onefile \
--add-data="wrappers;wrappers" \
--icon="images\video2x.ico" \
pyinstaller --noconfirm --log-level=WARN `
--onefile `
--add-data="wrappers;wrappers" `
--icon="images\video2x.ico" `
src/video2x.py
- name: Build Video2X GUI
run: |
pyinstaller --noconfirm --log-level=WARN \
--onefile \
--add-data="images;images" \
--add-data="locale;locale" \
--add-data="video2x_gui.ui;." \
--add-data="wrappers;wrappers" \
--icon="images\video2x.ico" \
pyinstaller --noconfirm --log-level=WARN `
--onefile `
--add-data="images;images" `
--add-data="locale;locale" `
--add-data="video2x_gui.ui;." `
--add-data="wrappers;wrappers" `
--icon="images\video2x.ico" `
src/video2x_gui.py
- name: Build Video2X Setup Script
run: |
pyinstaller --noconfirm --log-level=WARN \
--onefile \
--icon="images\video2x.ico" \
pyinstaller --noconfirm --log-level=WARN `
--onefile `
--icon="images\video2x.ico" `
src/video2x_setup.py