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 3ba7f47 commit a4bcb32Copy full SHA for a4bcb32
.github/workflows/of.yml
@@ -111,7 +111,7 @@ jobs:
111
run: ./scripts/ci/msys2/build.sh
112
113
- name: Allexamples
114
- run: ./scripts/msys2/buildAllExamples.sh
+ run: ./scripts/msys2/buildAllExamples.sh .
115
116
# - name: Run tests
117
# run: ./scripts/ci/msys2/run_tests.sh
scripts/msys2/buildAllExamples.sh
@@ -2,7 +2,13 @@
2
3
export LC_ALL=C
4
5
-examples_dir=../../examples
+#!/bin/bash
6
+if [ -z "$1" ]; then
7
+ examples_dir=../../examples
8
+else
9
+ examples_dir="$1"
10
+fi
11
+
12
examples_prefix="$examples_dir/"
13
14
system=msys2
0 commit comments