We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c16f963 commit 0eece2aCopy full SHA for 0eece2a
.github/workflows/build-macos.yml
@@ -71,12 +71,16 @@ jobs:
71
72
- name: build_cmdline.sh
73
run: |
74
- echo "build_cmdline.sh: $(pwd) "
75
- cd ../
76
- echo "build_cmdline.sh: ../ $(pwd) "
77
- ls
78
- cd openFrameworks/
79
- echo "build_cmdline.sh: ../openFrameworks $(pwd) "
+ echo "Current directory: $(pwd)"
+ echo "Listing repository root:"
+ ls -lah ..
+ echo "Changing directory to openFrameworks..."
+ cd ../openFrameworks
+ echo "Now in: $(pwd)"
80
+ echo "Listing apps/projectGenerator/scripts/osx:"
81
+ ls -lah apps/projectGenerator/
82
+
83
+ echo "Executing build_cmdline.sh:"
84
./apps/projectGenerator/scripts/osx/build_cmdline.sh
85
- name: Build PG macOS GUI and command line
86
0 commit comments