added verbose arguments to all of the export workflow copying steps
This commit is contained in:
parent
2cce2541cf
commit
9ab79e7609
1 changed files with 5 additions and 5 deletions
|
@ -54,9 +54,9 @@ jobs:
|
|||
|
||||
- name: Copy export files
|
||||
run: |
|
||||
mkdir -p /export/.minecraft
|
||||
cp -rT ./build/prism /export
|
||||
cp ./unsup.ini /export/.minecraft/
|
||||
mkdir -vp /export/.minecraft
|
||||
cp -vrT ./build/prism /export
|
||||
cp -v ./unsup.ini /export/.minecraft/
|
||||
|
||||
- name: Upload export file
|
||||
uses: actions/upload-artifact@v3
|
||||
|
@ -73,8 +73,8 @@ jobs:
|
|||
|
||||
- name: Copy export files
|
||||
run: |
|
||||
cp -rT ./build/atlauncher /export
|
||||
cp -p ./unsup.ini /export/.minecraft/
|
||||
cp -vrT ./build/atlauncher /export
|
||||
cp -vp ./unsup.ini /export/.minecraft/
|
||||
|
||||
- name: Upload export file
|
||||
uses: actions/upload-artifact@v3
|
||||
|
|
Reference in a new issue