Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinmcfarland committed Dec 10, 2024
1 parent afdddf9 commit c9ce79d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/run-create-plugma-2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Install Cygwin and Expect with Admin Privileges
shell: pwsh
- name: Install Cygwin and Expect
run: |
curl -LO https://cygwin.com/setup-x86_64.exe
Start-Process -FilePath ./setup-x86_64.exe -ArgumentList '--quiet-mode --root C:\cygwin64 --local-package-dir C:\cygwin64\packages --site http://mirrors.kernel.org/sourceware/cygwin/ --packages expect' -Verb RunAs -Wait
./setup-x86_64.exe --quiet-mode --root C:\cygwin64 --local-package-dir C:\cygwin64\packages --site http://mirrors.kernel.org/sourceware/cygwin/ --packages expect
- name: Add Cygwin to PATH
run: |
Expand All @@ -44,7 +43,8 @@ jobs:
EOF
shell: bash

- name: Check if project directory was created
- name: Display TestProject Directory Contents
run: |
test -d TestProject # Confirm the project directory was created
test -f TestProject/package.json # Check for package.json as an indicator of successful setup
echo "Contents of TestProject directory:"
ls TestProject
shell: bash

0 comments on commit c9ce79d

Please sign in to comment.