Skip to content

Commit f6c7fdf

Browse files
Fixed Version issues on macos
1 parent a8d82fb commit f6c7fdf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/postman.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ jobs:
7070
rename --verbose 'y/A-Z/a-z/' Postman* # Rename to lowercase
7171
${{ matrix.extract_cmd }} postman*
7272
rename --verbose 'y/A-Z/a-z/' Postman* # Rename to lowercase
73+
mv postman* Postman
7374
7475
- name : "Get Postman Version"
7576
run: |
@@ -82,7 +83,7 @@ jobs:
8283
8384
- name : "Check if app.asar file is found"
8485
run: |
85-
path=$(find $PWD/postman* -type f -iname app.asar)
86+
path=$(find $PWD/Postman -type f -iname app.asar)
8687
8788
if [[ "${path}" == *app.asar ]]; then
8889
echo "app.asar path: ${path}"
@@ -94,7 +95,7 @@ jobs:
9495
- name : "Fix Scratch Pad Banner"
9596
run: |
9697
npm install
97-
node fix.js -p ./postman* -v
98+
node fix.js -p ./Postman -v
9899
99100
- name : "Postman Cleanup"
100101
if: ${{ env.NO_APP_ASAR }}
@@ -105,7 +106,6 @@ jobs:
105106
106107
- name : "Create Postman archive"
107108
run: |
108-
mv ./postman* Postman
109109
tar --xz -cf postman-${{ matrix.os_type }}-${{ env.VERSION }}.tar.xz ./Postman
110110
ls -lh
111111

0 commit comments

Comments
 (0)